diff options
| author | Ahmed M Alaa <aa@4b.cx> | 2022-12-03 21:01:01 +0200 |
|---|---|---|
| committer | Ahmed M Alaa <aa@4b.cx> | 2022-12-03 21:01:01 +0200 |
| commit | 028f23e96dd4c6a86465cb616be84480ac3a7a1e (patch) | |
| tree | caffe481ff29aab5111e69b242cfc072a84912b6 /templates/section.html | |
init: just ported the theme
Diffstat (limited to 'templates/section.html')
| -rw-r--r-- | templates/section.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..cd509fa --- /dev/null +++ b/templates/section.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block header %} +<p><a href="{{ section.path }}..">..</a>{{ section.path }}</p> + +<h1>{{ section.title }}</h1> +{% endblock header %} + +{% block content %} +{{ section.content | safe }} +{% if paginator %} +{% set pages = paginator.pages %} +{% else %} +{% set pages = section.pages %} +{% endif %} +<ul> +{% for page in pages %} + <li> + <a href="{{ page.permalink | safe }}">{{ page.date }} - {{ page.title }}</a> + <br /> + {{ page.description }} + </li> +{% endfor %} +</ul> +{% if paginator %} +<p>{% if paginator.previous %}<a href="{{ paginator.first }}"><< First</a> <a href="{{ paginator.previous }}">< Previous</a>{% endif %} [{{ paginator.current_index }}/{{ paginator.number_pagers }}] {% if paginator.next %}<a href="{{ paginator.next }}">Next ></a> <a href="{{ paginator.last }}">Last >></a>{% endif %}</p> +{% endif %} +{% endblock content %}
\ No newline at end of file |
