From 4c917fc60d4dec2151c83237cacecf604c0a9242 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 6 May 2015 06:44:18 +0300 Subject: initial commit --- index.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 index.html (limited to 'index.html') diff --git a/index.html b/index.html new file mode 100644 index 0000000..f8d2488 --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ +--- +title: Posts +layout: posts +group: "navigation" +--- +{% if site.posts.size == 0 %} +

Sorry, there're no posts yet.

+
+{% else %} + {% for post in paginator.posts %} +

{{ post.title }}

+

Posted on {{ post.date | date_to_long_string }}

+ Read More  +
+ {% endfor %} +
+ {% include pagination.html %} +
+{% endif %} -- cgit v1.2.3