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