aboutsummaryrefslogtreecommitdiff
path: root/_layouts/index.html
blob: 7c546a2e42882c26a1fdf6cb2e160c09cb8e6e08 (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
35
36
37
<!doctype html>
<html lang="en">

	<head>

		<meta charset="utf-8">
		<meta name="theme-color" content="#000000">
		<meta name="description" content="{{ page.description }}">

		<title>{{ page.title }}</title>

		<link rel="stylesheet" href="/assets/highlight.css">
		<link rel="stylesheet" href="/assets/site.css">

	</head>

	<body>

		{% include header.html %}

		<main>

			<ul>
				{% for post in site.posts %}
				<li>
					<time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: '%A, %B %-d, %Y' }}</time>
					<div><a href="{{ post.url }}">{{ post.title }}</a></div>
				</li>
				{% endfor %}
			</ul>
		</main>

		{% include footer.html %}

	</body>

</html>