16 lines
335 B
HTML
16 lines
335 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block style %}
|
|
<link href="{{get_url(path="section.css")}}" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{section.title}}</h1>
|
|
|
|
<div id="links">
|
|
{% for page in section.pages %}
|
|
<a href="{{page.permalink}}">{{page.title}}</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %} |