18 lines
393 B
HTML
18 lines
393 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
<div class="intro">
|
|
{{ section.content | safe }}
|
|
</div>
|
|
|
|
<h2>Últimas Entradas</h2>
|
|
<ul>
|
|
{% for page in section.pages %}
|
|
<li>
|
|
{{ page.date }} - <a href="{{ page.permalink }}">{{ page.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|