diff options
| author | Alee <alee14498@gmail.com> | 2018-11-18 14:24:02 -0500 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-11-18 14:24:02 -0500 |
| commit | de08697ecd437c1df67dc07ac323efabfdaac3cf (patch) | |
| tree | 7291f4b04b571e927a8ab82830cd0ebc5bb9ec36 /blog.html | |
| parent | d393774579f410e1107a2f31818565ce19b50975 (diff) | |
| download | personal-website-de08697ecd437c1df67dc07ac323efabfdaac3cf.tar.gz personal-website-de08697ecd437c1df67dc07ac323efabfdaac3cf.tar.bz2 personal-website-de08697ecd437c1df67dc07ac323efabfdaac3cf.zip | |
added columns and rows in homepage
Diffstat (limited to 'blog.html')
| -rw-r--r-- | blog.html | 35 |
1 files changed, 19 insertions, 16 deletions
@@ -2,27 +2,30 @@ --- <!DOCTYPE HTML> <HTML> - <HEAD> - {% include heading.html %} - <TITLE>Blog | {{ site.title }}</TITLE> - </HEAD> + +<HEAD> + {% include heading.html %} + <TITLE>Blog | {{ site.title }}</TITLE> +</HEAD> + <BODY> {% include navigator.html %} <div class="jumbotron"> - <h1 class ="title">Blog</h1> + <h1 class="title">Blog</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> + <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> + +</HTML>
\ No newline at end of file |
