summaryrefslogtreecommitdiff
path: root/templates/project.html
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-07-17 22:56:41 +1200
committerArslaan Pathan <[email protected]>2026-07-17 22:56:41 +1200
commitee510ff529df49bf9d9c5e4d86f99032bb81162b (patch)
tree7cecb71371a7e047e2eac318b862efe99dda8552 /templates/project.html
parentf411bc46a2e535d0404f4b50bbb5c55c1fe8eb59 (diff)
downloadarslaancodes-ee510ff529df49bf9d9c5e4d86f99032bb81162b.tar.xz
arslaancodes-ee510ff529df49bf9d9c5e4d86f99032bb81162b.zip
Create a fastfetch, fill in the homepage, add placeholder projects section, create assets/images
Diffstat (limited to 'templates/project.html')
-rw-r--r--templates/project.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/project.html b/templates/project.html
new file mode 100644
index 0000000..4653d1c
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+
+{% block content %}
+<h1 class="title">{{ section.title }}</h1>
+<ul>
+ {% for page in section.pages %}
+ <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
+ {% endfor %}
+</ul>
+{% endblock content %}