20 lines
536 B
HTML
20 lines
536 B
HTML
---
|
|
layout: default
|
|
home: true
|
|
---
|
|
|
|
{% include anchor_headings.html html=content anchorClass="anchor-head" beforeHeading=true h_min=1 h_max=4 %}
|
|
{%- if site.posts != empty -%}
|
|
<h2 aria-label="Recent Posts">Recent Posts</h2>
|
|
<div>
|
|
{%- for post in site.posts limit: site.number_of_posts -%}
|
|
<article class="post-item">
|
|
<span class="post-item-date">{{ post.date | date: "%b %d, %Y" }}</span>
|
|
<h4 class="post-item-title">
|
|
<a href="{{ post.url }}">{{ post.title | escape }}</a>
|
|
</h4>
|
|
</article>
|
|
{%- endfor -%}
|
|
</div>
|
|
{%- endif -%}
|