/ ‘content/pages.html’
This commit is contained in:
parent
44b467b4a0
commit
5fde5593e2
1 changed files with 30 additions and 0 deletions
|
|
@ -1 +1,31 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content_title %}
|
||||
<div class="fl o-50" style="font-size:0.4em;">[|] <br/>#pages#</div>
|
||||
<a class="fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/pages.html">|</a>
|
||||
<a class="fr o-10 pr1" style="font-size:0.8em;" href="{{ SITEURL }}">{{ SITENAME }}</a>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<dl>
|
||||
{% for page in pages %}
|
||||
<dt>
|
||||
<a class="noticeable" href='{{ SITEURL }}/{{ article.url }}'>
|
||||
{{ article.date.isoformat() }} - {{ article.title }}
|
||||
</a>
|
||||
</dt>
|
||||
{% endfor %}
|
||||
</dl>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
||||
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block pagelisting %}
|
||||
<dl>
|
||||
<dt>
|
||||
<a class="fl o-10" href="{{ SITEURL }}">{{ SITENAME }}</a>
|
||||
<a class="fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/categories.html">*</a>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue