Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 583 Bytes

blog.md

File metadata and controls

25 lines (20 loc) · 583 Bytes
layout title permalink
page
Blog
/blog/
      <h1 class="page-heading">Posts</h1>

      <ul class="post-list">
        {% for post in site.posts %}
          <li>
            <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>

            <h2>
              <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
            </h2>
          </li>
        {% endfor %}
      </ul>

    </div>
</div>