scribd.github.io/blog.html

32 lines
768 B
HTML

---
layout: default
title: Blog
permalink: /blog/
---
{%- if page.title -%}
<h1>{{ page.title }}</h1>
{%- endif -%}
{%- if site.posts.size > 0 -%}
<h2>{{ page.list_title | default: "Posts" }}</h2>
<ul>
{%- for post in site.posts -%}
<li>
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<span>{{ post.date | date: date_format }}</span>
<h3>
<a href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{%- endif -%}
</li>
{%- endfor -%}
</ul>
<p>subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
{%- endif -%}