site-sdf/templates/index.html

28 lines
561 B
HTML

{# Welcome to the main page! #}
<!DOCTYPE html>
<html>
<head>
<title>{{ config.title }}</title>
{% style() %}
h1 { size:5em; }
{% end %}
</head>
<body>
<div class="head">
<h1>{{ config.title }}</h1>
{%- for i in config.extra.links %}
<a href="{{ i.href }}">{{ i.title }}</a>
{%- endfor -%}
<hr />
</div>
<img href="images/av.png" />
<h1>Atlas48</h1>
<p>{# TODO: add "about me" section #}</p>
<ol id="posts">
{% for page in paginator.pages %}
<li><a href="{{ page.permalink }}">{{ post_macros::title(page=page) }}</a></li>
{% endfor %}
</ol>
</body>
</html>