added showcase, credits, and fixed hover bug

This commit is contained in:
2024-06-20 17:51:58 +01:00
parent 8b16166e6c
commit 67bf94c851
21 changed files with 555 additions and 127 deletions

View File

@@ -15,6 +15,38 @@
<div id="project-body">
{{ content }}
</div>
{% if showcase %}
<div id="project-showcase">
<div id="pr-header">Exhibited:</div>
<div id="showcase-cont">
{% for show in showcase %}
<div class="showcase">
<p>({{ show['year'] }})</p>
<p>{{ show['name'] }},</p>
<p>{{ show['location'] }}</p>
</div>
{% endfor %}
</div>
</div>
{% endif %}
{% if credits %}
<div id="project-credits">
<div id="pr-header">Credits:</div>
<div id="credit-cont">
{% for credit in credits %}
<div class="credit">
<p>&#8594;</p>
<p>{{ credit }}, </p>
<p>{{ credits[credit]}}</p>
</div>
{% endfor %}
</div>
</div>
{% endif %}
{% if references %}
<div id="project-related">
<div id="pr-header">References:</div>
<ul id="pr-list">
@@ -22,10 +54,12 @@
<li><a href='{{ reference['link'] }}'>{{ reference['title'] }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="sleeping-mario">
<img src="/images/website/mario-sleep-up.gif">
</div>
</div>
</div>
</div>
{% endblock %}