From 98b3e864c7595d15c24b05cc0e2bd29f87a13a09 Mon Sep 17 00:00:00 2001 From: eqkter Date: Fri, 18 Aug 2023 22:32:12 +0200 Subject: Initial commit --- templates/base.html | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ templates/index.html | 25 ++++++++++++++++++++ templates/page.html | 9 ++++++++ templates/projects.html | 13 +++++++++++ 4 files changed, 108 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/index.html create mode 100644 templates/page.html create mode 100644 templates/projects.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..a4974b4 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,61 @@ + + + + + + {% if page.title %} + {{ page.title }} + {% else %} + AARAVOS + {% endif %} + + + + +
+

Alexis Draussin

+ +
+
+
+
+ {% block content %} {% endblock %} +
+
+
+ + + + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..be86172 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block content %} +

+ Welcome to eqkter.org! +

+

Find me on Framagit.

+
+

This website contains:

+ +
+
+

Website Guide

+ +
+{% endblock content %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..f0f638e --- /dev/null +++ b/templates/page.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ page.title }} +

+

{{ page.date }}

+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/projects.html b/templates/projects.html new file mode 100644 index 0000000..6e7d799 --- /dev/null +++ b/templates/projects.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ section.title }} +

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