From 8b3f0aa590b51cfd7696ed212adf94fa43a0e858 Mon Sep 17 00:00:00 2001 From: lemon Date: Sat, 19 Feb 2022 20:55:07 +0100 Subject: initial --- templates/base.html | 19 +++++++++++++++++++ templates/blog-page.html | 14 ++++++++++++++ templates/blog.html | 15 +++++++++++++++ templates/index.html | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 82 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/blog-page.html create mode 100644 templates/blog.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..149831a --- /dev/null +++ b/templates/base.html @@ -0,0 +1,19 @@ + + + + + + + {% block title %} {% endblock %} + + + + +
+
+ {% block content %} {% endblock %} +
+
+ + + diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..b8263e0 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block title %}{{ page.title }}{% endblock title %} + +{% block content %} +

+ {{ page.title }} +

+

{{ page.date | date(format="%-d %b %Y") }}

+ +
+{{ page.content | safe }} +
Go back +{% endblock content %} diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..afee41d --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block title %}lemon's site{% endblock title %} + +{% block content %} +

+ {{ section.title }} +

+ +
Go back +{% endblock content %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..d6c2755 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} + +{% block title %}lemon's site{% endblock title %} +{% block content %} + +

lemon's site

+Hi, I'm lemon (she/her). I like compilers, tool-assisted speedruns and low level +programming among other things. I do stuff sometimes. Occasionally I might +share some of that stuff here. + +

links

+ + + +

contact

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