mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 09:37:11 +00:00
23 lines
421 B
HTML
23 lines
421 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'header.html' %}
|
|
</head>
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
|
|
<div class="indent">
|
|
|
|
<h1> SuperMega </h1>
|
|
|
|
<!-- iterate through data and print as ul -->
|
|
<ul>
|
|
{% for item in data %}
|
|
<li><a href="/project/{{item.name}}">{{ item.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<a href="/add_project">Add</a>
|
|
</div>
|
|
</body>
|
|
</html> |