diff options
Diffstat (limited to 'blog.html')
| -rw-r--r-- | blog.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..324ab67 --- /dev/null +++ b/blog.html @@ -0,0 +1,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> |
