/ ‘content/pages.html’

This commit is contained in:
Dooho Yi 2020-05-06 01:33:48 +09:00
parent 0d58cf6a0c
commit 84b6e5f314

View file

@ -7,13 +7,13 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<ul style="list-style-type: circle;"> <dl style="list-style-type: circle;">
{% for page in pages %} {% for page in pages %}
<li> <dt>
<a class="noticeable" href='{{ SITEURL }}/{{ page.url }}'> <a class="noticeable" href='{{ SITEURL }}/{{ page.url }}'>
{{ page.title }}<span class="o-50"> - {{ page.date.isoformat() }}</span> {{ page.title }}<span class="o-50"> - {{ page.date.isoformat() }}</span>
</a> </a>
</li> </dt>
{% endfor %} {% endfor %}
</ul> </dl>
{% endblock %} {% endblock %}