samhuri.net/Tests/test-projects/in/templates/projects.html

15 lines
277 B
HTML

<!doctype html>
<html>
<head>
<title>{{ site.title }}</title>
</head>
<body>
<h1><a href="{{ site.url }}">{{ site.title }}</a></h1>
<ul>
{% for project in projects %}
<li><a href="{{ project.path }}">{{ project.title }}</a></li>
{% endfor %}
</ul>
</body>
</html>