aboutsummaryrefslogtreecommitdiff
path: root/_layouts/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2018-08-06 05:14:39 +0200
committerGitHub <noreply@github.com>2018-08-06 05:14:39 +0200
commit31571ecdd95729b6e0a9ff619bbdb9638b236d35 (patch)
tree5f9b591120ab88e7f8aa087b88ffcf23e3a0e87d /_layouts/index.html
parentaf66ba2d471ea4780911ec24dda82cf40214f33b (diff)
parent1875608804de0dccb6dced1b51f9efa8fb5d93d4 (diff)
downloadmitjafelicijan.com-31571ecdd95729b6e0a9ff619bbdb9638b236d35.tar.gz
Merge pull request #1 from mitjafelicijan/gh-pages
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>