diff options
| author | Alee <alee14498@gmail.com> | 2018-11-03 15:19:58 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-11-03 15:19:58 -0400 |
| commit | ca0c69911b5645c306c30f2a8b00dd378315b791 (patch) | |
| tree | bceeed1a11b3aa48cf5acdc360301773938ffbfe /blog.html | |
| parent | 1d226dcf070d88d1465af35a090fccc03f57a8f8 (diff) | |
| download | silicon-linux-ca0c69911b5645c306c30f2a8b00dd378315b791.tar.gz silicon-linux-ca0c69911b5645c306c30f2a8b00dd378315b791.tar.bz2 silicon-linux-ca0c69911b5645c306c30f2a8b00dd378315b791.zip | |
Our new blog system (kind of broken for now) and some additional features
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> |
