From e80f58116a9ecd67b2febe06778c624fd42ed1c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Mon, 18 Jan 2021 12:52:27 +0100 Subject: Restart repo from scratch --- templates/base.html | 35 +++++++++++++++++++++++++++++++++++ templates/directory-page.html | 7 +++++++ templates/directory.html | 9 +++++++++ templates/index.html | 30 ++++++++++++++++++++++++++++++ templates/robots.txt | 2 ++ templates/sitemap.xml | 1 + 6 files changed, 84 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/directory-page.html create mode 100644 templates/directory.html create mode 100644 templates/index.html create mode 100644 templates/robots.txt create mode 100644 templates/sitemap.xml (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..0795d4a --- /dev/null +++ b/templates/base.html @@ -0,0 +1,35 @@ + + + + rgoncalves.se + + + + + + +
+ {% if title is defined %} +

{{ title }}

+ {% else %} +

rgoncalves.se

+ {% endif %} + +
+ + {% block content %} {% endblock %} + + + + diff --git a/templates/directory-page.html b/templates/directory-page.html new file mode 100644 index 0000000..5b2c5d5 --- /dev/null +++ b/templates/directory-page.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block content %} + +{{ page.content | safe }} + +{% endblock content %} diff --git a/templates/directory.html b/templates/directory.html new file mode 100644 index 0000000..c4130fb --- /dev/null +++ b/templates/directory.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +{% for page in section.pages %} +
+ {{ page.date }} : {{ page.title }} +
+{% endfor %} +{% endblock content %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..87812ea --- /dev/null +++ b/templates/index.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} + +{% block content %} + +

+ My name is Romain GONCALVES, usually rgoncalves/binary550 on git. +

+

+Actually studying computer science, I would like to progress in infrastructure and administration of +Unix based systems. +Running my machines on Archlinux and OpenBSD, I deploy and maintain my internal servers and services +for my own use. Moreover, I develop my own solutions or set of scripts. +

+ +

crypto

+ + +

contact

+ + +{% endblock content %} diff --git a/templates/robots.txt b/templates/robots.txt new file mode 100644 index 0000000..c6742d8 --- /dev/null +++ b/templates/robots.txt @@ -0,0 +1,2 @@ +User-Agent: * +Disallow: / diff --git a/templates/sitemap.xml b/templates/sitemap.xml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/templates/sitemap.xml @@ -0,0 +1 @@ + -- cgit v1.2.3