aboutsummaryrefslogtreecommitdiff
path: root/blog.html
diff options
context:
space:
mode:
Diffstat (limited to 'blog.html')
-rw-r--r--blog.html35
1 files changed, 19 insertions, 16 deletions
diff --git a/blog.html b/blog.html
index dbcb294..251f390 100644
--- a/blog.html
+++ b/blog.html
@@ -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