silicon-linux/blog.html
2018-11-03 15:28:04 -04:00

25 lines
493 B
HTML

---
project: Silicon Linux
---
<HTML>
<HEAD>
{% include heading.html %}
<TITLE>Silicon Linux</TITLE>
</HEAD>
<BODY>
{% include navigator.html %}
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li class="list-blog">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p><b>{{ post.date | date_to_string }} | By: {{ post.author }}</b></p>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>
{% include footer.html %}
</BODY>
</HTML>