mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
15 lines
277 B
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>
|