{% if include.truncate %}
    {% if page.content contains '' %}
      {{ page.content | split:'' | first | markdownify }}
      
    {% else %}
      {{ page.content | markdownify }}
    {% endif %}
  {% else %}
    {{ content }}
  {% endif %}
  {% unless include.truncate %}
    {% include plugins/like_button.html %}
  {% endunless %}