From 0ec040670b1c206c85dcbcc274982d42b399ada9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20=C2=BBmo=2E=C2=AB=20Sauer?= Date: Mon, 15 Sep 2014 21:51:39 +0200 Subject: [PATCH] Update --- _includes/pagination.html | 28 +++++++++++++++------------- _layouts/blog.html | 23 ++--------------------- blog/index.html | 12 +----------- 3 files changed, 18 insertions(+), 45 deletions(-) diff --git a/_includes/pagination.html b/_includes/pagination.html index a87760f..410903a 100644 --- a/_includes/pagination.html +++ b/_includes/pagination.html @@ -5,19 +5,21 @@ Total paginate-pages: {{ paginator.total_pages }} --> - {% for post in paginator.posts %} -
-
-

{% if post.subtitle %}{{ post.subtitle }}{% endif %} {{ post.date | date: "%d.%m.%Y" }} · {% if post.categories %}{{ post.categories | join: ' · ' }}{% endif %}

-

{{ post.title }}

-

- {% if post.image.thumb %}{{ page.title escape_once }}{% endif %} - {{ post.description }} - Read more › -

-
-
- {% endfor %} +{% for post in paginator.posts %} +
+
+

{% if post.subtitle %}{{ post.subtitle }}{% endif %} {{ post.date | date: "%d.%m.%Y" }} · {% if post.categories %}{{ post.categories | join: ' · ' }}{% endif %}

+

{{ post.title }}

+

+ {% if post.image.thumb %}{{ page.title escape_once }}{% endif %} + + {% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.description %}{{ post.description | strip_html | escape }}{% endif %} + + Read more › +

+
+
+{% endfor %}