commit bf13c0dddb1a446f4cf6e00ffc50f9a99aade5b0 parent 1853b312c2a52e529b08eccd4710644b969d269d Author: MTRNord <mtrnord1@gmail.com> Date: Sat, 28 Apr 2018 14:53:19 +0200 prepare Posts site Diffstat:
| A | _layouts/blog.html | | | 17 | +++++++++++++++++ |
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/_layouts/blog.html b/_layouts/blog.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="en"> + {% include head.html %} + <body> + {% include header.html %} + <section id="blog"> + <ul> + {% for post in site.posts %} + <li> + <a href="{{ post.url }}">{{ post.title }}</a> + </li> + {% endfor %} + </ul> + </section> + {{ content }} + {% include footer.html %} + </body>