From a95406fdbe26a378c7e7581293cecbabfba6ce8e Mon Sep 17 00:00:00 2001 From: Rasmus Luha Date: Sat, 17 Sep 2022 01:25:22 +0300 Subject: init commit --- templates/base.html | 39 +++++++++++++++++++++++++++++++++++++++ templates/index.html | 24 ++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/index.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..9b997b6 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,39 @@ + + + + + + {% if page.title%} + {{ page.title }} + {% else %} + Luhamus + {% endif %} + + + + +
+
+

Luhamus

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

Hello and Welcome!

+

My name is Rasmus. I am studying Computer Science and Physics

+

This site has many purposes. It serves somewhat as the replacement for my social-media, + it hosts my Git and E-mail server, and some other cool stuff aswell. + So, Go on, have a look around!

+
+ +
+

Text stuff here

+

Pellentesque sit amet, porttitor eget dolor + arcu risus, quis varius quam quisque id diam + vel quam elementum pulvinar etiam non quam + lacus suspendisse.

+
+ +
+

Corner of Cool

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