Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.46 KB

File metadata and controls

58 lines (49 loc) · 1.46 KB

{% for category in site.categories %} {% if category[0] == 'gettingstarted' %} {% for post in category[1] %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %}

Posted on {{ post.date | date: "%B %-d, %Y" }}

{% if post.image %}
{% endif %}
{{ 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 %} [Read More] {% endif %}

{% if post.tags.size > 0 %}

Tags: {% if site.link-tags %} {% for tag in post.tags %} {{- tag -}} {% endfor %} {% else %} {{ post.tags | join: ", " }} {% endif %}
{% endif %} {% endfor %} {% endif %} {% endfor %}