{% assign post_url = post.url | absolute_url %} <div class=“post”>

<div class="post--date">{{ post.date | date: "%A %m.%d.%y" | downcase }}</div>
<h1 class="post--title">
  <a href="{{ post_url }}">
      {{ post.title }}
    </a>
</h1>

{% if include.show_excerpt == true and post.show_excerpt != false %}
{{ post.excerpt }}
<div class="post--read-more">
  <a href="{{ post_url }}">
    read more &#9660;
  </a>
</div>
{% else %}
{{ post.content }}
{% endif %}

<div class="post--tags">
  {% for tag in post.tags %}
    {% capture tag_url %}tag/{{ tag }}.html{% endcapture %}
    {% assign absolute_tag_url = tag_url | absolute_url %}
    <span class="post--tag"><a href="{{ absolute_tag_url }}">[{{ tag }}]</a></span>&nbsp;
  {% endfor %}
</div>

</div>