mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
23 lines
380 B
HTML
23 lines
380 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'header.html' %}
|
|
</head>
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
|
|
<div class="indent">
|
|
|
|
<h1> ShcDevs: </h1>
|
|
|
|
<ul>
|
|
{% for item in data %}
|
|
<li><a href="/shcdev/{{item['name']}}">{{ item['name'] }}</a>
|
|
({{item["date"]}})
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |