i don't remember what changed here

This commit is contained in:
CJSatnarine
2025-03-21 22:31:19 -04:00
parent e5a10faac4
commit 3661438008
11 changed files with 87 additions and 7 deletions

View File

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

View File

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

View File

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

View File

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

View File

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