Here goes something
This commit is contained in:
commit
dab293cdd5
6 changed files with 59 additions and 0 deletions
13
templates/poesia.html
Normal file
13
templates/poesia.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
{{ section.title }}
|
||||
</h1>
|
||||
<ul>
|
||||
{% for page in section.pages %}
|
||||
<li>{{ page.date }} — <a href="{{ page.permalink | safe }}">{{ page.title | default(value="Sem título") }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue