Blog Posts & Other Stuff
Featured
Post
{% assign i = 0 %}
{% for post in site.posts %}
{% if i == 0 %}
{{post.title}}
{% if post.is_short %}
Mini Post
{% endif %}
{{post.description}}
{% else %}
{{post.title}}
{{post.description}}
{% endif %}
{% assign i = i | plus:1 %}
{% endfor %}