aboutsummaryrefslogtreecommitdiff
path: root/_layouts/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2018-08-06 05:11:34 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2018-08-06 05:11:34 +0200
commit1875608804de0dccb6dced1b51f9efa8fb5d93d4 (patch)
tree5f9b591120ab88e7f8aa087b88ffcf23e3a0e87d /_layouts/index.html
parentaf66ba2d471ea4780911ec24dda82cf40214f33b (diff)
downloadmitjafelicijan.com-1875608804de0dccb6dced1b51f9efa8fb5d93d4.tar.gz
jekyll
Diffstat (limited to '_layouts/index.html')
-rw-r--r--_layouts/index.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/_layouts/index.html b/_layouts/index.html
new file mode 100644
index 0000000..872cd2e
--- /dev/null
+++ b/_layouts/index.html
@@ -0,0 +1,34 @@
1<!doctype html>
2<html lang="en">
3
4<head>
5 <meta charset="utf-8">
6 <meta name="theme-color" content="#000000">
7 <meta name="description" content="{{ page.description }}">
8 <title>{{ page.title }}</title>
9
10 <style>{% include site.css %}</style>
11
12</head>
13
14<body>
15
16 {% include header.html %}
17
18 <main>
19
20 <ul>
21 {% for post in site.posts %}
22 <li>
23 {{ post.date | date: "%m/%d/%Y" }}
24 <a href="{{ post.url }}">{{ post.title }}</a>
25 </li>
26 {% endfor %}
27 </ul>
28 </main>
29
30 {% include footer.html %}
31
32</body>
33
34</html>