layout |
---|
page |
{% for post in site.posts limit:1 %}
{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}
{{ post.content }}{% include post_ending_cta.html %}
{% endfor %}
-
{% for post in site.posts offset:1 %}
<li>
{% for tag in post.tags %}
<i class="fa {{ tag }} fa-fw"></i>
{% endfor %}
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}