blob: f981b3b4dfa4493b5856c4eb11c726c2e5061de6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.title }}</title>
<link rel="stylesheet" href="{{ site.url }}style.css">
</head>
<body>
<header>
<h1><a href="/">{{ site.title }}</a></h1>
<nav><a href="/search/">search</a></nav>
</header>
<main>
{% if intro %}<section class="intro">{{ intro }}</section>{% endif %}
<ul class="post-list">
{% for post in posts %}
<li>
<span class="date">{{ post.date }}</span>
<a href="/{{ post.slug }}/">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% if total_pages > 1 %}
<nav class="pagination">
<span>{% if has_prev %}<a href="{{ prev_url }}">← newer</a>{% else %}<span class="disabled">← newer</span>{% endif %}</span>
<span class="info">page {{ page }} of {{ total_pages }}</span>
<span>{% if has_next %}<a href="{{ next_url }}">older →</a>{% else %}<span class="disabled">older →</span>{% endif %}</span>
</nav>
{% endif %}
</main>
<footer><p>{{ site.author }}</p></footer>
</body>
</html>
|