aboutsummaryrefslogtreecommitdiff
path: root/_layouts
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
parentaf66ba2d471ea4780911ec24dda82cf40214f33b (diff)
downloadmitjafelicijan.com-1875608804de0dccb6dced1b51f9efa8fb5d93d4.tar.gz
jekyll
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/index.html34
-rw-r--r--_layouts/page.html25
-rw-r--r--_layouts/post.html25
3 files changed, 84 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>
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 0000000..b3d2fc4
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,25 @@
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 </head>
10
11 <body>
12
13 {% include header.html %}
14
15 <h1>page</h1>
16
17 <article>
18 {{ content }}
19 </article>
20
21 {% include footer.html %}
22
23 </body>
24
25</html>
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..a6936cf
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,25 @@
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 </head>
10
11 <body>
12
13 {% include header.html %}
14
15 <h1>post</h1>
16
17 <article>
18 {{ content }}
19 </article>
20
21 {% include footer.html %}
22
23 </body>
24
25</html>