Files
cjsatnarine.space/templates/projects-landing.html
CJSatnarine 16eae75fdf
Some checks failed
Build / deploy (push) Has been cancelled
create 3Dworldring section and moved stuff around
2026-02-02 23:49:36 -05:00

25 lines
874 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
{{ section.content | safe }}
<p><a href="{{ get_url(path='@/projects/3d_world_ring/_index.md')}}">3dworldring</a></p>
<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>
<ul>
{% for page in section.pages %}
<li><a id="blog_colour" href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}