summaryrefslogtreecommitdiff
path: root/_layouts/journal.liquid
diff options
context:
space:
mode:
authorAdam Carpenter <gitlab@53hor.net>2019-06-12 19:44:53 -0400
committerAdam Carpenter <gitlab@53hor.net>2019-06-12 19:44:53 -0400
commit9caf57c3b642391325e9e70e03cead529f02516f (patch)
tree075cb63b607994edee1231a819186c945ca8358e /_layouts/journal.liquid
parent775a6ea8ed0665bcb2a3de432aca80da57184424 (diff)
downloadcobalt-site-9caf57c3b642391325e9e70e03cead529f02516f.tar.xz
cobalt-site-9caf57c3b642391325e9e70e03cead529f02516f.zip
Updated posts, removed lunr, fixed similar/all post list layout bug.
Diffstat (limited to '_layouts/journal.liquid')
-rw-r--r--_layouts/journal.liquid30
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>