| 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 %}
{% endfor %}
{{ post.content | strip_html | truncatewords: 50 }}
{% if post.project == "farmoxel" %}
{% elsif post.project == "roommakers" %}
{% elsif post.project == "kta" %}
{% endif %}
{{ post.date | date: "%B %d, %Y" }}
{% if post.tags %}
Read more →
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% endif %}