2013-11-18 01:08:13 +01:00
|
|
|
---
|
2013-11-18 23:26:34 +01:00
|
|
|
layout: base
|
2013-11-21 21:15:26 +01:00
|
|
|
title: kremalicious
|
|
|
|
description: 'Blog of designer & developer Matthias Kretschmann'
|
2013-11-18 01:08:13 +01:00
|
|
|
---
|
|
|
|
|
2013-11-20 23:33:58 +01:00
|
|
|
{% for post in paginator.posts %}
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-18 23:26:34 +01:00
|
|
|
{% if post.layout == "link" %}
|
|
|
|
|
|
|
|
<article class="hentry format-link">
|
|
|
|
<header>
|
|
|
|
<h1 class="entry-title">
|
2013-11-19 00:51:47 +01:00
|
|
|
<a href="{{ post.linkurl }}" title="Go to source">{{ post.title }} <i class="icon-forward"></i></a>
|
2013-11-18 23:26:34 +01:00
|
|
|
</h1>
|
|
|
|
</header>
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-18 23:26:34 +01:00
|
|
|
<section class="entry-content">
|
|
|
|
{{ post.content }}
|
|
|
|
<p>
|
|
|
|
<a class="more-link" href="{{ post.linkurl }}">Go to source <i class="icon-forward"></i></a>
|
|
|
|
<a class="permalink-link" href="{{ post.url }}" rel="tooltip" title="Permalink">∞</a>
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{% elsif post.layout == "image" %}
|
|
|
|
|
|
|
|
<article class="hentry format-image">
|
|
|
|
|
|
|
|
<a class="photoPost" href="{{ post.url }}">
|
|
|
|
<figure class="hmedia">
|
|
|
|
|
2013-11-22 00:06:00 +01:00
|
|
|
<span data-picture data-alt="">
|
|
|
|
<span data-src="/media/320/{{ post.image }}"></span>
|
|
|
|
<span data-src="/media/640/{{ post.image }}" data-media="(min-device-pixel-ratio: 1.5)"></span>
|
|
|
|
<span data-src="/media/640/{{ post.image }}" data-media="(min-width: 500px)"></span>
|
|
|
|
<span data-src="/media/1280/{{ post.image }}" data-media="(min-width: 640px) and (min-device-pixel-ratio: 2.0)"></span>
|
|
|
|
|
|
|
|
<noscript>
|
2013-11-22 00:35:07 +01:00
|
|
|
<img src="/media/{{ post.image }}">
|
2013-11-22 00:06:00 +01:00
|
|
|
</noscript>
|
|
|
|
</span>
|
|
|
|
|
2013-11-18 23:26:34 +01:00
|
|
|
<figcaption class="entry-title fn">{{ post.title }}</figcaption>
|
|
|
|
exif
|
|
|
|
</figure>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
|
|
<article class="hentry format-post">
|
|
|
|
<header>
|
|
|
|
<h1 class="entry-title"><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<section class="entry-content">
|
2013-11-18 23:54:59 +01:00
|
|
|
|
|
|
|
{% if post.image %}
|
|
|
|
<a href="{{ post.url }}">
|
2013-11-22 00:06:00 +01:00
|
|
|
<span class="teaser" data-picture data-alt="">
|
|
|
|
<span data-src="/media/320/{{ post.image }}"></span>
|
|
|
|
<span data-src="/media/640/{{ post.image }}" data-media="(min-device-pixel-ratio: 1.5)"></span>
|
|
|
|
<span data-src="/media/640/{{ post.image }}" data-media="(min-width: 500px)"></span>
|
|
|
|
<span data-src="/media/1280/{{ post.image }}" data-media="(min-width: 640px) and (min-device-pixel-ratio: 2.0)"></span>
|
|
|
|
|
|
|
|
<noscript>
|
2013-11-22 00:35:07 +01:00
|
|
|
<img src="/media/{{ post.image }}">
|
2013-11-22 00:06:00 +01:00
|
|
|
</noscript>
|
|
|
|
</span>
|
2013-11-18 23:54:59 +01:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
2013-11-21 22:01:36 +01:00
|
|
|
{% capture has_more %}{{ post.content | has_more }}{% endcapture %}
|
|
|
|
|
|
|
|
{% if has_more == 'true' %}
|
|
|
|
{{ post.content | post.excerpt | excerpt }}
|
|
|
|
{% else %}
|
|
|
|
{{ post.excerpt }}
|
|
|
|
{% endif %}
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-18 23:26:34 +01:00
|
|
|
<a class="more-link" href="{{ post.url }}">Continue reading <i class="icon-arrow-right"></i></a>
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-18 23:26:34 +01:00
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{% endif %}
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-20 23:33:58 +01:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<nav class="row pager pagination">
|
|
|
|
{% if paginator.previous_page %}
|
|
|
|
|
|
|
|
<p class="previous col2 alignleft">
|
|
|
|
<i class="icon-arrow-left"></i>
|
|
|
|
{% if paginator.previous_page == 1 %}
|
|
|
|
<a href="/" rel="prev">Previous</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="/page/{{ paginator.previous_page }}/" rel="prev">Previous</a>
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
<p class="col2 textcenter">
|
|
|
|
<span class="page_number ">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
|
|
|
</p>
|
|
|
|
{% if paginator.next_page %}
|
|
|
|
<p class="next col2 alignright">
|
|
|
|
<a href="/page/{{ paginator.next_page }}/" rel="next">Next</a>
|
|
|
|
<i class="icon-arrow-right"></i>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|