Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 513 Bytes

scratch.md

File metadata and controls

26 lines (21 loc) · 513 Bytes
title layout
Scratch
page
{% for post in site.scratch %}
<div class="post-list">
    <h2 class="post-title">
  <a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a>
</h2>
    {% if post.description %}
    <p>{{ post.description }}</p>
    {% endif %}

    {% if post.date %}
    <div class="post-date">
        <time>{{ post.date | date_to_string }}</time>
    </div>
    {% endif %}
</div>

{% endfor %}