From e556d45c040054abc3cd92589d9c0364d8ac54fe Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 30 May 2017 03:48:01 +0300 Subject: "Plots" is now the landing page --- posts.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 posts.html (limited to 'posts.html') diff --git a/posts.html b/posts.html new file mode 100644 index 0000000..eb52770 --- /dev/null +++ b/posts.html @@ -0,0 +1,22 @@ +--- +title: Main page +layout: sidebar +groups: + - navbar +navbar_link:  Main page +--- +{% if site.posts.size == 0 %} +

Sorry, no posts have been added yet.

+

But I've made quite a few plots which you might want to check out.

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

{{ post.title }}

+

Posted on {{ post.date | date_to_long_string }}

+

{{ post.excerpt }}

+
+ {% endfor %} +
+ {% include common/pagination.html %} +
+{% endif %} -- cgit v1.2.3