Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 765 Bytes

blog.md

File metadata and controls

29 lines (26 loc) · 765 Bytes
layout title
default
Blog
{% for post in site.posts %}

Posted on {{ post.date | date: "%B %d, %Y" }} by {{ post.author }}

{% endfor %}
{% if paginator.page %}
<div id="paginator" class="content">
  {% if paginator.next_page %}
  <a href="/page{{ paginator.next_page }}/">Older entries</a>
  {% endif %}
  {% if paginator.previous_page %}
  <a href="/page{{ paginator.previous_page }}/">Newer entries</a>
  {% endif %}
</div>
{% endif %}