website/_includes/doc.html [6:20]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{% if include.truncate %}
{% if page.content contains '' %}
{{ page.content | split:'' | first }}
{% else %}
{{ page.content }}
{% endif %}
{% else %}
{{ content }}
{% endif %}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
website/_includes/post.html [16:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{% if include.truncate %}
{% if page.content contains '' %}
{{ page.content | split:'' | first }}
{% else %}
{{ page.content }}
{% endif %}
{% else %}
{{ content }}
{% endif %}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -