diff options
author | Adam Carpenter <gitlab@53hor.net> | 2019-06-12 19:44:53 -0400 |
---|---|---|
committer | Adam Carpenter <gitlab@53hor.net> | 2019-06-12 19:44:53 -0400 |
commit | 9caf57c3b642391325e9e70e03cead529f02516f (patch) | |
tree | 075cb63b607994edee1231a819186c945ca8358e /_layouts | |
parent | 775a6ea8ed0665bcb2a3de432aca80da57184424 (diff) | |
download | cobalt-site-9caf57c3b642391325e9e70e03cead529f02516f.tar.xz cobalt-site-9caf57c3b642391325e9e70e03cead529f02516f.zip |
Updated posts, removed lunr, fixed similar/all post list layout bug.
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/journal.liquid | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/_layouts/journal.liquid b/_layouts/journal.liquid index e3f5ae4..8d8798c 100644 --- a/_layouts/journal.liquid +++ b/_layouts/journal.liquid @@ -2,7 +2,6 @@ <html> <head> {% include "head.liquid" %} - <script src="/public/js/lunr.js"></script> </head> <body> @@ -21,8 +20,11 @@ <div class="hero-body"> <div class="container"> <h1 class="title"> - {{ page.title }} + Journal </h1> + <h2 class="subtitle"> + Is it a blog? Probably. + </h2> </div> </div> <!-- end hero body --> @@ -30,35 +32,23 @@ </section> <!-- end hero --> - <!-- begin main content --> - <section class="section"> - <div class="container"> - - <div class="content"> - {{ page.content }} - </div> - - </div> - </section> - <!-- end main content --> - <!-- begin blog posts --> <section class="section"> <div class="container"> <div class="columns"> - <!-- begin short post list --> - <div class="column is-narrow"> - {% include all-posts.liquid %} - </div> - <!-- end short post list --> - <!-- begin long post list --> <div class="column"> {% include post-list.liquid %} </div> <!-- end long post list --> + <!-- begin short post list --> + <div class="column is-narrow"> + {% include all-posts.liquid %} + </div> + <!-- end short post list --> + </div> </div> </section> |