Destructables/templates/projects.html

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ data[0] }} - Destructables</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
{% include "style.html" %}
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/favicon.png') }}">
</head>
<body>
{% include "header.html" %}
<center>
<h1>{{ data[0] }}</h1>
<span><a href="{{ data[2] }}/">Featured</a></span>
<span><a href="{{ data[2] }}/recent/">Recent</a></span>
<span><a href="{{ data[2] }}/popular/">Popular</a></span>
<span><a href="{{ data[2] }}/views/">Views</a></span>
<span><a href="{{ data[2] }}/winners/">Winners</a></span>
<br>
<div style="max-width:90%;">
{% for ible in data[1] %}
<div class="ible-list-item">
<a href="{{ ible[0] }}" style="color:#bbc2cf;">
<img style="max-width:350px;" src="{{ ible[1] }}" alt="{{ ible[2] }}">
<p>{{ ible[2] }}</p>
</a>
<p>by <a href="{{ ible[3] }}">{{ ible[4] }}</a> in <a href="{{ ible[5] }}">{{ ible[6] }}</a></p>
<p>{{ ible[7] }} Views, {{ ible[8] }} Favorites</p>
</div>
{% endfor %}
</div>
</center>
{% include "footer.html" %}
</body>
</html>