summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
author53hornet <53hornet@gmail.com>2019-04-07 15:52:35 -0400
committer53hornet <53hornet@gmail.com>2019-04-07 15:52:35 -0400
commitf48338109e2170d9c7c9ec4cd884e57f94197791 (patch)
treee06dc3e4219e1bc3c622f3a40bf61b264ca30c7f /_layouts
parent4384dc784991f8722e5bb3f09064161d0bf1eb9c (diff)
downloadcobalt-site-f48338109e2170d9c7c9ec4cd884e57f94197791.tar.xz
cobalt-site-f48338109e2170d9c7c9ec4cd884e57f94197791.zip
Updated look, footer, nav links.
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/index.liquid6
-rw-r--r--_layouts/post.liquid15
2 files changed, 11 insertions, 10 deletions
diff --git a/_layouts/index.liquid b/_layouts/index.liquid
index 9831a26..44feff5 100644
--- a/_layouts/index.liquid
+++ b/_layouts/index.liquid
@@ -27,11 +27,13 @@
<!-- begin content -->
<div class="column">
- <h1 class="title">
+ <h1 class="title animated flipInX">
{{ page.title }}
</h1>
- {{ page.content }}
+ <div class="content animated flipInX">
+ {{ page.content }}
+ </div>
</div>
<!-- end content -->
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
index d39007f..6c90a7e 100644
--- a/_layouts/post.liquid
+++ b/_layouts/post.liquid
@@ -31,25 +31,24 @@
</h2>
<!-- end title and date -->
- <!-- begin categories -->
+ <!-- begin categories and tags -->
{% if page.categories %}
{% for category in page.categories %}
- <h2 class="subtitle">
- {{ category }}
- </h2>
+ <span class="tag">
+ {{ category | downcase }}
+ </span>
{% endfor %}
{% endif %}
- <!-- end categories -->
- <!-- begin tags -->
{% if page.tags %}
{% for tag in page.tags %}
<span class="tag">
- {{ tag }}
+ {{ tag | downcase }}
</span>
{% endfor %}
{% endif %}
- <!-- end tags -->
+ <!-- end categories and tags -->
+
</div>
</div>
<!-- end hero body -->