Skip to content

Latest commit

 

History

History
39 lines (38 loc) · 2.14 KB

File metadata and controls

39 lines (38 loc) · 2.14 KB
layout title
page
Blog Archive

{% for post in site.posts %}

{% if post.content contains "![" %} {% assign images = post.content | split: "![" %} {% assign firstImage = images[1] | split: ")" | first %} {% assign imageUrl = firstImage | split: "](" | last %}
{% endif %}

{{ post.content | strip_html | truncatewords: 50 }}

{% if post.project == "farmoxel" %} Farmoxel {% elsif post.project == "roommakers" %} Room Makers {% elsif post.project == "kta" %} KTA {% endif %} {{ post.date | date: "%B %d, %Y" }} {% if post.tags %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
Read more →
{% endfor %}