Files
cjsatnarine.space/templates/projects-landing.html
CJSatnarine 502ec8201d
Some checks failed
Build / deploy (push) Has been cancelled
changed styling
2026-01-06 04:59:52 -05:00

25 lines
889 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<p><a href="{{ get_url(path='@/projects/programming/_index.md') }}">programming</a></p>
<p><a href="{{ get_url(path='@/projects/game_development/_index.md') }}">game development</a></p>
<p><a href="{{ get_url(path='@/projects/language_stuff/_index.md') }}">language stuff</a></p>
<p><a href="{{ get_url(path='@/projects/photography/_index.md') }}">photography</a></p>
<p><a href="{{ get_url(path='@/projects/animation/_index.md') }}">animation</a></p>
<p><a href="{{ get_url(path='@/projects/weekly_blender_render/_index.md')}}">weekly blender render</a></p>
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}