mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-27 14:57:40 +00:00
13 lines
254 B
HTML
13 lines
254 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ site.title }}</title>
|
|
{% for style in site.styles %}
|
|
<link rel="stylesheet" href="{{ style }}">
|
|
{% endfor %}
|
|
</head>
|
|
<body>
|
|
<h1><a href="{{ site.url }}">{{ site.title }}</a></h1>
|
|
{{ body }}
|
|
</body>
|
|
</html>
|