Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 496 Bytes

blog.md

File metadata and controls

19 lines (13 loc) · 496 Bytes

Showcase

    {% for post in site.posts %}
    {% unless post.hidefromlist %}
    <h3><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h3>
    <small style="color: hotpink;">{{ post.author }} on {{ post.date | date_to_string }}</small>
    <p>
      {{ post.excerpt }}
    </p>
    {% endunless %}
    

    {% endfor %}