delete blog directory

This commit is contained in:
CJSatnarine
2025-03-31 19:30:00 -04:00
parent a24f483331
commit 82599fbe25
33 changed files with 15 additions and 14 deletions

14
templates/blog.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}