mirror of
https://github.com/silicon-linux/silicon-linux.github.io.git
synced 2025-01-22 14:12:01 -05:00
25 lines
493 B
HTML
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>
|