You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
760 B
31 lines
760 B
{% 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 %}
|
|
|