Vincent Prouillet
7 years ago
7 changed files with 114 additions and 27 deletions
@ -0,0 +1,19 @@ |
|||||||
|
{% extends "index.html" %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
{% block header %} |
||||||
|
{{ super() }} |
||||||
|
{% endblock header %} |
||||||
|
|
||||||
|
<h1>Categories</h1> |
||||||
|
|
||||||
|
{% if categories %} |
||||||
|
<ul> |
||||||
|
{% for category in categories %} |
||||||
|
<li> |
||||||
|
<a href="{{ category.permalink }}">{{ category.name }}</a>({{ category.pages | length }}) |
||||||
|
</li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
{% endif %} |
||||||
|
{% endblock content %} |
@ -0,0 +1,14 @@ |
|||||||
|
{% extends "index.html" %} |
||||||
|
{% import "post_macros.html" as post_macros %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
{% block header %} |
||||||
|
{{ super() }} |
||||||
|
{% endblock header %} |
||||||
|
|
||||||
|
<h1>{{ category.name }}</h1> |
||||||
|
|
||||||
|
{% for page in category.pages %} |
||||||
|
{{ post_macros::page_in_list(page=page) }} |
||||||
|
{% endfor %} |
||||||
|
{% endblock content %} |
@ -0,0 +1,13 @@ |
|||||||
|
{% extends "index.html" %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
{% block header %} |
||||||
|
{{ super() }} |
||||||
|
{% endblock header %} |
||||||
|
|
||||||
|
<h1>{{ tag.name }}</h1> |
||||||
|
|
||||||
|
{% for page in tag.pages %} |
||||||
|
{{ post_macros::page_in_list(page=page) }} |
||||||
|
{% endfor %} |
||||||
|
{% endblock content %} |
@ -0,0 +1,17 @@ |
|||||||
|
{% extends "index.html" %} |
||||||
|
|
||||||
|
{% block content %} |
||||||
|
{% block header %} |
||||||
|
{{ super() }} |
||||||
|
{% endblock header %} |
||||||
|
|
||||||
|
<h1>Tags</h1> |
||||||
|
|
||||||
|
{% if tags %} |
||||||
|
<ul> |
||||||
|
{% for tag in tags %} |
||||||
|
<li><a href="{{ tag.permalink }}">{{ tag.name }}</a> ({{ tag.pages | length }})</li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
{% endif %} |
||||||
|
{% endblock content %} |
Loading…
Reference in new issue