1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/_includes/articles.html

113 lines
4.2 KiB
HTML
Raw Normal View History

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>
</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">
{{ 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 %}
{% 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
{% if post.categories contains "goodies" and page.path contains "goodies" %}
2013-12-02 22:19:13 +01:00
<footer class="goodie-actions">
<p class="info col3">
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 %}
<p class="download col3">
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
{% 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>
{% endunless %}
2013-11-24 17:31:03 +01:00
</section>
</article>
{% endif %}