diff options
author | Adam Carpenter <53hornet@gmail.com> | 2019-05-03 18:54:32 -0400 |
---|---|---|
committer | Adam Carpenter <53hornet@gmail.com> | 2019-05-03 18:54:32 -0400 |
commit | 689e85e78c106cefb6c83bcdbeae565d021d2e96 (patch) | |
tree | 2f96878c867040192f2722d94b9fe65aace1d1f1 /_layouts | |
parent | 77458c3f87eafc1d17f9ef47f9926e0a5a98ceac (diff) | |
download | cobalt-site-689e85e78c106cefb6c83bcdbeae565d021d2e96.tar.xz cobalt-site-689e85e78c106cefb6c83bcdbeae565d021d2e96.zip |
Broke apart journal page elements, restored favicon.
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/index.liquid | 13 | ||||
-rw-r--r-- | _layouts/journal.liquid | 56 | ||||
-rw-r--r-- | _layouts/page.liquid | 7 | ||||
-rw-r--r-- | _layouts/post.liquid | 47 |
4 files changed, 34 insertions, 89 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid index 1b124c3..744b08e 100644 --- a/_layouts/index.liquid +++ b/_layouts/index.liquid @@ -7,12 +7,11 @@ <body> <!-- begin hero --> - <section class=" - hero - is-primary - is-fullheight - is-fullheight-with-navbar - "> + <section class="hero + is-primary + is-fullheight + is-fullheight-with-navbar + "> <!-- begin hero head --> <div class="hero-head"> {% include "nav.liquid" %} @@ -57,6 +56,6 @@ <footer class="footer"> {% include "footer.liquid" %} </footer> - </body> + </body> </html> diff --git a/_layouts/journal.liquid b/_layouts/journal.liquid index 01d0fd1..bdd9ee0 100644 --- a/_layouts/journal.liquid +++ b/_layouts/journal.liquid @@ -48,65 +48,13 @@ <!-- begin short post list --> <div class="column is-narrow"> - <aside class="menu"> - <p class="menu-label"> - All Posts - </p> - - <ul class="menu-list"> - {% for post in collections.posts.pages %} - <li> - <a href="{{ post.permalink }}"> - {{ post.title }} - {% if post.published_date %} - <span class="has-text-light"> - {{ post.published_date | date: "%e %b %Y" }} - </span> - {% endif %} - </a> - </li> - {% endfor %} - </ul> - </aside> + {% include all-posts.liquid %} </div> <!-- end short post list --> <!-- begin long post list --> <div class="column"> - {% for i in (1..20) %} - {% for post in collections.posts.pages %} - <div class="card"> - <header class="card-header"> - <p class="card-header-title"> - {% if post.published_date %} - {{ post.published_date | date: "%A, %b %e, %Y" }} - {% endif %} - </p> - </header> - <div class="card-content"> - <p class="subtitle"> - {{ post.title }} - </p> - <div class="content"> - {{ post.content | truncatewords: 50 }} - </div> - </div> - <footer class="card-footer"> - <a class="card-footer-item" - href="{{ post.permalink }}" - > - Read more... - </a> - <a class="card-footer-item" - href="{{ post.permalink }}" - target="_blank" - > - Open in new tab... - </a> - </footer> - </div> - {% endfor %} - {%endfor%} + {% include post-list.liquid %} </div> <!-- end long post list --> diff --git a/_layouts/page.liquid b/_layouts/page.liquid index 1c5cd99..28e8e20 100644 --- a/_layouts/page.liquid +++ b/_layouts/page.liquid @@ -6,10 +6,7 @@ <body> <!-- begin hero --> - <section class=" - hero - is-primary - "> + <section class="hero is-primary"> <!-- begin hero head --> <div class="hero-head"> {% include "nav.liquid" %} @@ -54,6 +51,6 @@ <footer class="footer"> {% include "footer.liquid" %} </footer> - </body> + </body> </html> diff --git a/_layouts/post.liquid b/_layouts/post.liquid index 50fb240..80831a2 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -6,10 +6,7 @@ <body> <!-- begin hero --> - <section class=" - hero - is-primary - "> + <section class="hero is-primary"> <!-- begin hero head --> <div class="hero-head"> {% include "nav.liquid" %} @@ -34,27 +31,25 @@ <!-- end title and date --> <!-- begin categories and tags --> + <p> {% if page.categories %} - <p> - Categories: - {% for category in page.categories %} - <span class="tag"> - {{ category | downcase }} - </span> - {% endfor %} - </p> + Categories: + {% for category in page.categories %} + <span class="tag is-rounded"> + {{ category | downcase }} + </span> + {% endfor %} {% endif %} {% if page.tags %} - <p> - Tags: - {% for tag in page.tags %} - <span class="tag"> - #{{ tag | downcase }} - </span> - {% endfor %} - </p> + Tags: + {% for tag in page.tags %} + <span class="tag is-rounded"> + #{{ tag | downcase }} + </span> + {% endfor %} {% endif %} + </p> <!-- end categories and tags --> </div> @@ -68,8 +63,14 @@ <section class="section"> <div class="container"> <div class="columns"> - <div class="content"> - {{ page.content }} + <div class="column"> + <div class="content"> + {{ page.content }} + </div> + </div> + + <div class="column is-narrow"> + {% include similar-posts.liquid %} </div> </div> </div> @@ -79,6 +80,6 @@ <footer class="footer"> {% include "footer.liquid" %} </footer> - </body> + </body> </html> |