diff options
Diffstat (limited to 'blog.html')
| -rw-r--r-- | blog.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..15cb9f5 --- /dev/null +++ b/blog.html @@ -0,0 +1,25 @@ +--- +project: Andrew's Website +--- + +<HTML> + <HEAD> + {% include heading.html %} + <TITLE>Andrew's Website Blog</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> |
