aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.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/post.html
parentaf66ba2d471ea4780911ec24dda82cf40214f33b (diff)
parent1875608804de0dccb6dced1b51f9efa8fb5d93d4 (diff)
downloadmitjafelicijan.com-31571ecdd95729b6e0a9ff619bbdb9638b236d35.tar.gz
Merge pull request #1 from mitjafelicijan/gh-pages
jekyll
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html25
1 files changed, 25 insertions, 0 deletions
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>