From da7e4514cfdbe52e8f1ef6aadd54c401e2b849f5 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 17 Sep 2025 15:59:30 +0200 Subject: Use zola --- templates/base.html | 48 ++++++++++++++++++++++++++++++++++++++++ templates/index.html | 5 +++++ templates/shortcodes/window.html | 8 +++++++ templates/text.html | 8 +++++++ 4 files changed, 69 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/index.html create mode 100644 templates/shortcodes/window.html create mode 100644 templates/text.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..04120ba --- /dev/null +++ b/templates/base.html @@ -0,0 +1,48 @@ + + + + + + + + + + + + Rubén Beltrán del Río — {{ section.title }} + + + + + + + + + + + + +
+

+ + Rubén Beltrán del Río +

+

✷ Holistic + tech + services ✷

+
+
+ {% block content %}{% endblock %} +
+ + + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..be0db07 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} +{{ section.content | safe }} +{% endblock %} diff --git a/templates/shortcodes/window.html b/templates/shortcodes/window.html new file mode 100644 index 0000000..3fe8b50 --- /dev/null +++ b/templates/shortcodes/window.html @@ -0,0 +1,8 @@ +
+
+ {{title}} +
+
+ {{ body | safe }} +
+
diff --git a/templates/text.html b/templates/text.html new file mode 100644 index 0000000..9ba2a71 --- /dev/null +++ b/templates/text.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} + +{% block content %} +
+ + {{ section.content | safe }} +
+{% endblock %} -- cgit