From f411bc46a2e535d0404f4b50bbb5c55c1fe8eb59 Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Fri, 17 Jul 2026 21:11:08 +1200 Subject: Initial commit --- templates/base.html | 18 ++++++++++++++++++ templates/blog-page.html | 9 +++++++++ templates/blog.html | 10 ++++++++++ templates/header.html | 12 ++++++++++++ templates/index.html | 8 ++++++++ 5 files changed, 57 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/blog-page.html create mode 100644 templates/blog.html create mode 100644 templates/header.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..a9bd296 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,18 @@ + + + + + Arslaan Pathan + + + + + {% include "header.html" %} +
+
+ {% block content %} {% endblock content %} +
+
+ + + diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..9902bb6 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ page.title }} +

+

{{ page.date }}

+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..4653d1c --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} +

{{ section.title }}

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

Hey, I'm Arslaan!

+

I’m a 13-year-old developer exploring systems programming, Linux, FOSS, reverse-engineering, jailbreaking, and a bit of embedded systems.

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