aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html4
-rw-r--r--_layouts/post.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 0c85d3c..fe6477c 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -8,9 +8,9 @@
</HEAD>
<BODY>
{% include navigator.html %}
-
+ <div class="container">
{{ content }}
-
+ </div>
{% include footer.html %}
</BODY>
</HTML>
diff --git a/_layouts/post.html b/_layouts/post.html
index d281d5a..1eb604c 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -8,12 +8,12 @@
</HEAD>
<BODY>
{% include navigator.html %}
-
+ <div class="container">
<h1>{{ page.title }}</h1>
<p><b>{{ page.date | date_to_string }} | By: {{ page.author }}</b></p>
{{ content }}
-
+ </div>
{% include footer.html %}
</BODY>
</HTML>