From 6e4ba7778578e32f6bad2fd67025cbbad7bce7d9 Mon Sep 17 00:00:00 2001 From: Nicolas Dato Date: Sat, 3 Jun 2023 23:11:42 -0300 Subject: agrego archivos para zola --- zola/templates/section.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 zola/templates/section.html (limited to 'zola/templates/section.html') diff --git a/zola/templates/section.html b/zola/templates/section.html new file mode 100644 index 0000000..11e7e6a --- /dev/null +++ b/zola/templates/section.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} + +{% block title %}{{ section.title }}{% endblock %} +{% block header %}{{ section.title }}{% endblock %} +{% block navigation %} + {% for a in section.ancestors %} + {% set s = get_section(path=a) %} + {% if loop.index != 1 %} > {% endif %}{{ s.title }} + {% endfor %} + > {{ section.title }} +{% endblock %} +{% block content %} +
+{% for page in section.pages %} +
+

{{ page.title }}

+
+
+

{{ page.description }} {{ page.updated }}

+
+{% endfor %} +
+{% endblock %} + -- cgit v1.2.3