Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _layouts/frontpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
{% for post in site.posts limit:1 %}
{% if post.image.homepage %}
<p>
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" title="{{ post.title escape_once }}"><img width="970" src="{{ site.urlimg }}{{ post.image.homepage }}" alt="{{ page.title escape_once }}"></a>
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" title="{{ post.title | escape_once }}"><img width="970" src="{{ site.urlimg }}{{ post.image.homepage }}" alt="{{ page.title | escape_once }}"></a>
</p>

{% if post.image.caption_url && post.image.caption %}
{% if post.image.caption_url and post.image.caption %}
<p class="text-right caption">
<a href="{{ post.image.caption_url }}">{{ post.image.caption }}</a>
</p>
Expand All @@ -88,7 +88,7 @@ <h2>{{ site.data.language.new_blog_entries }}</h2>
<h2><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<p>
{% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% else post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %}
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a>
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}" title="Read {{ post.title | escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a>
</p>
{% endfor %}
</div><!-- /.medium-5.columns -->
Expand Down
4 changes: 2 additions & 2 deletions _layouts/page-fullwidth.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
{% if page.image.title %}
<div class="row t30">
<div class="small-12 columns">
<img src="{{ site.urlimg }}{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}">
{% if page.image.caption_url && page.image.caption %}
<img src="{{ site.urlimg }}{{ page.image.title }}" width="970" alt="{{ page.title | escape_once }}">
{% if page.image.caption_url and page.image.caption %}
<p class="text-right caption">
<a href="{{ page.image.caption_url }}">{{ page.image.caption }}</a>
</p>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<header>
{% if page.image.title %}
<figure>
<img src="{{ site.urlimg }}{{ page.image.title }}" width="970" alt="{{ page.title escape_once }}" itemprop="image">
<img src="{{ site.urlimg }}{{ page.image.title }}" width="970" alt="{{ page.title | escape_once }}" itemprop="image">

{% if page.image.caption_url && page.image.caption %}
{% if page.image.caption_url and page.image.caption %}
<figcaption class="text-right">
<a href="{{ page.image.caption_url }}">{{ page.image.caption }}</a>
</figcaption>
Expand Down
2 changes: 1 addition & 1 deletion blog/archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1>{{ page.title }}</h1>
<a href="#panel{{ counter }}"><span class="iconfont"></span> {% if post.subheadline %}{{ post.subheadline }} › {% endif %}<strong>{{ post.title }}</strong></a>
<div id="panel{{ counter }}" class="content">
{% if post.meta_description %}{{ post.meta_description | strip_html | escape }}{% elsif post.teaser %}{{ post.teaser | strip_html | escape }}{% endif %}
<a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a><br><br>
<a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title | escape_once }}"><strong>{{ site.data.language.read_more }}</strong></a><br><br>
</div>
</dd>
{% assign counter=counter | plus:1 %}
Expand Down