25 lines
889 B
HTML
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 %}
|