diff options
| author | Alee <Alee14498@gmail.com> | 2019-04-24 18:27:58 -0400 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-04-24 18:27:58 -0400 |
| commit | 8c7c26d968c1158d22c5d26d417fad1031f6fb42 (patch) | |
| tree | 566f1f818dd9d4406818e8e198ec4ad65745369f /blog.html | |
| parent | 63397b0342db3b7a2edf923682d46273d108f071 (diff) | |
| download | aleecorp-website-8c7c26d968c1158d22c5d26d417fad1031f6fb42.tar.gz aleecorp-website-8c7c26d968c1158d22c5d26d417fad1031f6fb42.tar.bz2 aleecorp-website-8c7c26d968c1158d22c5d26d417fad1031f6fb42.zip | |
Website rewrite
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 |
