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/page.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 zola/templates/page.html (limited to 'zola/templates/page.html') diff --git a/zola/templates/page.html b/zola/templates/page.html new file mode 100644 index 0000000..180bd84 --- /dev/null +++ b/zola/templates/page.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} + +{% block title %}{{ page.title }}{% endblock %} +{% block header %}{{ page.title }}{% endblock %} +{% block navigation %} + {% for a in page.ancestors %} + {% set s = get_section(path=a) %} + {% if loop.index != 1 %} > {% endif %}{{ s.title }} + {% endfor %} + > {{ page.title }} +{% endblock %} +{% block content %} +
+ {{ page.content | safe }} +
+{% endblock %} + -- cgit v1.2.3