{% if post.layout == "link" %}
{{ post.content | markdownify }}
Go to source
∞
{% elsif post.layout == "photo" %}
{% else %}
{% if post.image %}
{% picture {{ post.image }} class="teaser" %}
{% endif %}
{% capture has_more %}{{ post.content | has_more }}{% endcapture %}
{% if has_more == 'true' %}
{{ post.content | post.excerpt | excerpt | markdownify }}
{% else %}
{{ post.excerpt | markdownify }}
{% endif %}
Continue reading
{% endif %}