From b80cbb4da92dcdead24a3ab44f84f5e75e1e7c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Tue, 14 Dec 2021 19:20:21 +0100 Subject: website: Bump for archived repository --- templates/_contact.html | 9 +++++++++ templates/_footer.html | 4 ++++ templates/_header.html | 19 +++++++++++++++++++ templates/base.html | 4 ++-- templates/footer.html | 4 ---- templates/header.html | 19 ------------------- templates/index.html | 10 +--------- 7 files changed, 35 insertions(+), 34 deletions(-) create mode 100644 templates/_contact.html create mode 100644 templates/_footer.html create mode 100644 templates/_header.html delete mode 100644 templates/footer.html delete mode 100644 templates/header.html (limited to 'templates') diff --git a/templates/_contact.html b/templates/_contact.html new file mode 100644 index 0000000..b129a50 --- /dev/null +++ b/templates/_contact.html @@ -0,0 +1,9 @@ +

contact

+ diff --git a/templates/_footer.html b/templates/_footer.html new file mode 100644 index 0000000..3b12028 --- /dev/null +++ b/templates/_footer.html @@ -0,0 +1,4 @@ + diff --git a/templates/_header.html b/templates/_header.html new file mode 100644 index 0000000..d59d46a --- /dev/null +++ b/templates/_header.html @@ -0,0 +1,19 @@ +
+
+ + {% if title is defined %} +

{{ title }}

+ {% else %} +

rgoncalves.se

+ {% endif %} +
+ +
diff --git a/templates/base.html b/templates/base.html index bf52ae1..4dcb601 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,10 +8,10 @@ - {% include "header.html" %} + {% include "_header.html" %} {% block content %} {% endblock %} - {% include "footer.html" %} + {% include "_footer.html" %} diff --git a/templates/footer.html b/templates/footer.html deleted file mode 100644 index 5be86a0..0000000 --- a/templates/footer.html +++ /dev/null @@ -1,4 +0,0 @@ - diff --git a/templates/header.html b/templates/header.html deleted file mode 100644 index b3a4049..0000000 --- a/templates/header.html +++ /dev/null @@ -1,19 +0,0 @@ -
-
- - {% if title is defined %} -

{{ title }}

- {% else %} -

rgoncalves.se

- {% endif %} -
- -
diff --git a/templates/index.html b/templates/index.html index b3bf87f..1d921b5 100644 --- a/templates/index.html +++ b/templates/index.html @@ -13,14 +13,6 @@ It allows me to improve my devops skill by deploying and maintaining my personal
  • pgp 8C7D 6DAF 14F8 1426 40CE 83EA F85C D02D B419 D68C -

    contact

    - +{% include "_contact.html" %} {% endblock content %} -- cgit v1.2.3