diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_contact.html | 9 | ||||
-rw-r--r-- | templates/_footer.html | 4 | ||||
-rw-r--r-- | templates/_header.html (renamed from templates/header.html) | 2 | ||||
-rw-r--r-- | templates/base.html | 4 | ||||
-rw-r--r-- | templates/footer.html | 4 | ||||
-rw-r--r-- | templates/index.html | 10 |
6 files changed, 17 insertions, 16 deletions
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 @@ +<h2>contact</h2> +<nav> + <a target="_blank" href="https://github.com/binary550">github</a> + <a target="_blank" href="https://gitlab.com/binary550">gitlab</a> + <a target="_blank" href="https://artstation.com/binary550">artstation</a> + <a target="_blank" href="https://matrix.to/#/@romaingoncalves:ungleich.ch">matrix</a> + <a target="_blank" href="https://www.linkedin.com/in/rgoncalvesse/">linkedin</a> + <a href="mailto:contact@rgoncalves.se">contact@rgoncalves.se</a> +</nav> 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 @@ +<footer class="delimiter"> + <p>Proudly powered by <a target="_blank" href="https://ungleich.ch">ungleich.ch</a>'s servers and dam !</p> + <a class="transparent" style="display:block" href="https://webring.xxiivv.com/#random" target="_blank"><img height=32 src="https://webring.xxiivv.com/icon.black.large.svg"/></a> +</footer> diff --git a/templates/header.html b/templates/_header.html index b3a4049..d59d46a 100644 --- a/templates/header.html +++ b/templates/_header.html @@ -13,7 +13,7 @@ <a href="/writeups/">writeups</a> <a href="/services/">services</a> <a href="/public">public</a> + <a href="/rss.xml">rss</a> <a href="http://git.rgoncalves.se">git</a> - <a href="https:/gitlab.com/rgoncalves.se/infrastructure/">infrastructure</a> </nav> </header> 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 @@ <link href="/style/style.css" rel="stylesheet" type="text/css"> </head> <body> - {% include "header.html" %} + {% include "_header.html" %} {% block content %} {% endblock %} - {% include "footer.html" %} + {% include "_footer.html" %} </body> </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 @@ -<footer class="delimiter"> - <p>Proudly powered by <a target="_blank" href="https://ungleich.ch">ungleich.ch</a>'s servers and dam !</p> - <p>Zero carbon - 100% renewable energy</p> -</footer> 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 <li><code>pgp</code> <a href="public/pgp.pub.txt">8C7D 6DAF 14F8 1426 40CE 83EA F85C D02D B419 D68C</a> </ul> -<h2>contact</h2> -<nav> - <a target="_blank" href="https://github.com/binary550">github</a> - <a target="_blank" href="https://gitlab.com/binary550">gitlab</a> - <a target="_blank" href="https://artstation.com/binary550">artstation</a> - <a target="_blank" href="https://matrix.to/#/@romaingoncalves:ungleich.ch">matrix</a> - <a target="_blank" href="https://www.linkedin.com/in/rgoncalvesse/">linkedin</a> - <a href="mailto:contact@rgoncalves.se">contact@rgoncalves.se</a> -</nav> +{% include "_contact.html" %} {% endblock content %} |