/ ‘theme/templates/categories.html’

This commit is contained in:
Dooho Yi 2020-05-06 01:21:20 +09:00
parent 8e01252e8a
commit 2296764cb3

View file

@ -1,11 +1,14 @@
{% extends "base.html" %}
{% block content_title %}
<a class="fl o-10" href="{{ SITEURL }} " title="title">{{ SITENAME }}</a>
<div class="fl o-50" style="font-size:0.4em;">/<br/>categ*r-ies</div>
<a class="fr o-50" style="font-size: 0.5em;" href="{{ SITEURL }}/categories.html">*</a>
<a class="fr o-10 pr1" style="font-size:0.8em;" href="{{ SITEURL }}">{{ SITENAME }}</a>
{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
<li><a class="noticeable" href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}