diff --git a/_layouts/frontpage.html b/_layouts/frontpage.html index a9fa344fcd0..5c72c4987c7 100644 --- a/_layouts/frontpage.html +++ b/_layouts/frontpage.html @@ -65,10 +65,10 @@ {% for post in site.posts limit:1 %} {% if post.image.homepage %}

- {{ page.title escape_once }} + {{ page.title | escape_once }}

- {% if post.image.caption_url && post.image.caption %} + {% if post.image.caption_url and post.image.caption %}

{{ post.image.caption }}

@@ -88,7 +88,7 @@

{{ site.data.language.new_blog_entries }}

{{ post.title }}

{% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% else post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %} - {{ site.data.language.read_more }} + {{ site.data.language.read_more }}

{% endfor %} diff --git a/_layouts/page-fullwidth.html b/_layouts/page-fullwidth.html index b757b57ea36..666e96d22a2 100644 --- a/_layouts/page-fullwidth.html +++ b/_layouts/page-fullwidth.html @@ -5,8 +5,8 @@ {% if page.image.title %}
- {{ page.title escape_once }} - {% if page.image.caption_url && page.image.caption %} + {{ page.title | escape_once }} + {% if page.image.caption_url and page.image.caption %}

{{ page.image.caption }}

diff --git a/_layouts/page.html b/_layouts/page.html index a8b1ddf237f..f9fba5c4f46 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -8,9 +8,9 @@
{% if page.image.title %}
- {{ page.title escape_once }} + {{ page.title | escape_once }} - {% if page.image.caption_url && page.image.caption %} + {% if page.image.caption_url and page.image.caption %}
{{ page.image.caption }}
diff --git a/blog/archive.html b/blog/archive.html index 40f0e5b7873..d8fc0da1657 100644 --- a/blog/archive.html +++ b/blog/archive.html @@ -19,7 +19,7 @@

{{ page.title }}

{% if post.subheadline %}{{ post.subheadline }} › {% endif %}{{ post.title }}
{% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %} - {{ site.data.language.read_more }}

+ {{ site.data.language.read_more }}

{% assign counter=counter | plus:1 %}