{% assign author = site.data.authors[page.author] %}
  
  
   {% if include.truncate %}
      {% if page.content contains '' %}
        {{ page.content | split:'' | first }}
        
      {% else %}
        {{ page.content }}
      {% endif %}
    {% else %}
      {{ content }}
    {% endif %}
  
  {% include plugins/all_share.html %}