Skip to content

Latest commit

 

History

History
43 lines (37 loc) · 1.12 KB

Guides.md

File metadata and controls

43 lines (37 loc) · 1.12 KB
layout title
page
Guides
{% for post in site.tags.guides %}

{{ post.title }}

  {% if post.subtitle %}
  <h3 class="post-subtitle">
    {{ post.subtitle }}
  </h3>
  {% endif %}
</a>

<p class="post-meta">
  Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>

<div class="post-entry-container">
  {% if post.image %}
  <div class="post-image">
    <a href="{{ post.url | prepend: site.baseurl }}">
      <img src="{{ post.image }}">
    </a>
  </div>
  {% endif %}
  <div class="post-entry">
    {{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
    {% assign excerpt_word_count = post.excerpt | number_of_words %}
    {% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
      <a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a>
    {% endif %}
  </div>
</div>
{% endfor %}