diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 2 | ||||
| -rw-r--r-- | _layouts/post.html | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index c18da03..835db63 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,6 +1,8 @@ <!doctype html> <html lang="en-us"> + {% include header.html %} + <body> {% include nav.html %} diff --git a/_layouts/post.html b/_layouts/post.html index b145364..1d0c7fb 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -3,7 +3,9 @@ <head> <meta charset="utf-8"> <title>{{ page.title }}</title> + {% include header.html %} + </head> <body> @@ -11,7 +13,7 @@ <main> <div class="container"> - <h2 class="brand center" id="title">{{ page.title | upcase }}</h2> + <h2 class="center" id="title">{{ page.title | upcase }}</h2> <h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5> <br> <div class="threecol justify">{{ content }}</div> |
