2013-11-24 17:31:03 +01:00
|
|
|
|
|
|
|
{% if post.layout == "link" %}
|
|
|
|
|
2015-08-10 00:48:31 +02:00
|
|
|
<article class="hentry format-link">
|
2015-08-09 21:50:06 +02:00
|
|
|
<header>
|
|
|
|
<h1 class="entry-title">
|
2013-11-29 20:53:16 +01:00
|
|
|
<a href="{{ post.linkurl }}" title="Go to source: {{ post.linkurl | remove:'http://' | remove:'https://' | remove:'www.' }}">
|
2015-06-08 21:22:09 +02:00
|
|
|
{{ post.title | titlecase }}
|
|
|
|
<svg class="icon icon-entypo icon-entypo-forward">
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#entypo-forward"></use>
|
|
|
|
</svg>
|
2013-11-29 20:53:16 +01:00
|
|
|
<span class="linkurl">{{ post.linkurl | remove:'http://' | remove:'https://' | remove:'www.' | split:'/' | first }}</span>
|
2013-11-24 17:55:57 +01:00
|
|
|
</a>
|
2013-11-24 17:31:03 +01:00
|
|
|
</h1>
|
2015-08-09 21:50:06 +02:00
|
|
|
</header>
|
2013-11-24 17:31:03 +01:00
|
|
|
|
|
|
|
<section class="entry-content">
|
2013-11-28 22:03:13 +01:00
|
|
|
{{ post.content | markdownify }}
|
2015-08-09 21:50:06 +02:00
|
|
|
<p>
|
|
|
|
<a class="more-link" href="{{ post.linkurl }}">Go to source
|
2015-06-08 21:22:09 +02:00
|
|
|
<svg class="icon icon-entypo icon-entypo-forward">
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#entypo-forward"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
<a class="permalink-link" href="{{ post.url }}" rel="tooltip" title="Permalink">
|
|
|
|
<svg class="icon icon-entypo icon-entypo-infinity">
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#entypo-infinity"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
2015-08-09 21:50:06 +02:00
|
|
|
</p>
|
2013-11-24 17:31:03 +01:00
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{% elsif post.layout == "photo" %}
|
|
|
|
|
2015-08-10 00:48:31 +02:00
|
|
|
<article class="hentry format-photo">
|
2013-11-24 17:31:03 +01:00
|
|
|
|
2013-11-24 18:00:20 +01:00
|
|
|
<a class="photo-link" href="{{ post.url }}">
|
2015-08-09 21:50:06 +02:00
|
|
|
<figure class="hmedia">
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2013-11-24 17:31:03 +01:00
|
|
|
{% picture {{ post.image }} %}
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2015-08-09 21:50:06 +02:00
|
|
|
<figcaption class="entry-title fn">{{ post.title | titlecase }}</figcaption>
|
|
|
|
</figure>
|
2013-11-24 17:31:03 +01:00
|
|
|
</a>
|
|
|
|
|
|
|
|
</article>
|
|
|
|
|
2014-07-12 21:22:47 +02:00
|
|
|
{% else %}
|
|
|
|
|
2015-08-10 00:48:31 +02:00
|
|
|
<article class="hentry format-post">
|
2015-08-09 21:50:06 +02:00
|
|
|
<header>
|
|
|
|
<h1 class="entry-title"><a href="{{ post.url }}">{{ post.title | titlecase }}</a></h1>
|
|
|
|
</header>
|
2013-11-24 17:31:03 +01:00
|
|
|
|
|
|
|
<section class="entry-content">
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2013-11-24 17:31:03 +01:00
|
|
|
{% if post.image %}
|
2014-08-31 18:24:01 +02:00
|
|
|
<a href="{{ post.url }}">
|
2013-11-24 17:31:03 +01:00
|
|
|
{% picture {{ post.image }} class="teaser" %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2013-11-24 17:31:03 +01:00
|
|
|
{% capture has_more %}{{ post.content | has_more }}{% endcapture %}
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2013-11-24 17:31:03 +01:00
|
|
|
{% if has_more == 'true' %}
|
2014-07-12 21:22:47 +02:00
|
|
|
{{ post.content | post.excerpt | excerpt | markdownify }}
|
2013-11-24 17:31:03 +01:00
|
|
|
{% else %}
|
2013-12-04 22:36:53 +01:00
|
|
|
{% unless post.categories contains "goodies" and page.path contains "goodies" %}
|
2013-12-02 22:19:13 +01:00
|
|
|
{{ post.excerpt | markdownify }}
|
|
|
|
{% endunless %}
|
2013-11-24 17:31:03 +01:00
|
|
|
{% endif %}
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2013-12-04 22:36:53 +01:00
|
|
|
{% if post.categories contains "goodies" and page.path contains "goodies" %}
|
2015-08-19 01:36:08 +02:00
|
|
|
<footer class="goodie-actions grid grid--gutters grid--full grid-small--fit">
|
2013-12-02 22:19:13 +01:00
|
|
|
|
2015-08-19 01:36:08 +02:00
|
|
|
<p class="info grid__col">
|
2015-06-08 21:22:09 +02:00
|
|
|
<a class="btn icon icon-info" href="{{ post.url }}">
|
|
|
|
<svg class="icon icon-entypo icon-entypo-info-with-circle">
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#entypo-info-with-circle"></use>
|
|
|
|
</svg>
|
|
|
|
Release Post
|
|
|
|
</a>
|
2013-12-02 22:19:13 +01:00
|
|
|
</p>
|
2013-11-24 17:31:03 +01:00
|
|
|
|
2013-12-02 22:19:13 +01:00
|
|
|
{% if post.download %}
|
2015-08-19 01:36:08 +02:00
|
|
|
<p class="download grid__col">
|
2015-06-08 21:22:09 +02:00
|
|
|
<a class="btn" href="/media/{{ post.download }}">
|
|
|
|
<svg class="icon icon-entypo icon-entypo-arrow-with-circle-down">
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#entypo-arrow-with-circle-down"></use>
|
|
|
|
</svg>
|
|
|
|
Download <span>zip</span>
|
|
|
|
</a>
|
2013-12-02 22:19:13 +01:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</footer>
|
|
|
|
{% endif %}
|
2014-07-12 21:22:47 +02:00
|
|
|
|
2013-12-04 22:36:53 +01:00
|
|
|
{% unless page.path contains "goodies" %}
|
2015-06-08 21:22:09 +02:00
|
|
|
<a class="more-link" href="{{ post.url }}">
|
|
|
|
Continue reading
|
|
|
|
<svg class="icon icon-entypo icon-entypo-chevron-right">
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#entypo-chevron-right"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
2013-12-04 22:36:53 +01:00
|
|
|
{% endunless %}
|
2013-11-24 17:31:03 +01:00
|
|
|
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{% endif %}
|