summaryrefslogtreecommitdiff
path: root/blog.html
blob: 324ab672787776c6e986f3db8c30fd01704cbe05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
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>{{ post.excerpt }}</p>
    </li>
  {% endfor %}
</ul>
  {% include footer.html %}
</BODY>
</HTML>