This commit is contained in:
2024-06-18 17:10:31 +01:00
commit 694571a3db
54 changed files with 2765 additions and 0 deletions

31
templates/article.html Normal file
View File

@@ -0,0 +1,31 @@
{% extends "_base.html" %}
{% block content %}
<div id="container">
<div id="project-container">
<div id="project-header">{{ title }}, {{ year }}</div>
<div id="project-tags">
{% for tag in tags %}
<div class="project-tag">✳ {{ tag }}</div>
{% endfor %}
</div>
<div id="project-cover">
<img src="/images/{{ image }}">
</div>
<div id="project-body">
{{ content }}
</div>
<div id="project-related">
<div id="pr-header">References:</div>
<ul id="pr-list">
{% for reference in references %}
<li><a href='{{ reference['link'] }}'>{{ reference['title'] }}</a></li>
{% endfor %}
</ul>
<div id="sleeping-mario">
<img src="/images/website/mario-sleep-up.gif">
</div>
</div>
</div>
</div>
{% endblock %}