diff options
Diffstat (limited to 'blog.html')
| -rw-r--r-- | blog.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..d28a5bb --- /dev/null +++ b/blog.html @@ -0,0 +1,31 @@ +--- +--- +<!DOCTYPE HTML> +<HTML> + +<HEAD> + {% include heading.html %} + <TITLE>Blog | {{ site.title }}</TITLE> +</HEAD> + +<BODY> + {% include navigator.html %} + <div class="jumbotron"> + <h1><center>Blog <a href="feed.xml"><i class="fas fa-rss-square white-text"></i></a></center></h1> + </div> + <div class="container"> + + <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> + </div> + {% include footer.html %} +</BODY> + +</HTML>
\ No newline at end of file |
