blog
This commit is contained in:
19
blog.html
Normal file
19
blog.html
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
layout: default
|
||||
title: Blog
|
||||
---
|
||||
<h1>Latest Posts</h1>
|
||||
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<h2>
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
<span style="font-size: 0.6em; font-style: italic; margin-left: 0.5rem;">
|
||||
{{ post.date | date: "%B %d, %Y" }}
|
||||
</span>
|
||||
</h2>
|
||||
{{ post.excerpt }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
Reference in New Issue
Block a user