Added breadcrumb to post titles. Starting to fix alignment for table headers

This commit is contained in:
Tetsuro
2015-07-25 15:39:04 -04:00
parent 0ca571f58c
commit d9a08801c5
4 changed files with 14 additions and 9 deletions
+10 -4
View File
@@ -38,11 +38,17 @@
{% endfor %}
</nav>
</div>
<div class="content">
<div class="wrapper">
<h1>{{ page.title }}</h1>
{{ content }}
<div class="content__area">
<div class="content__wrapper">
<h1>{% unless page.url == "/index.html" %}{{ page.collection | capitalize }} &rarr; {% endunless %} {{ page.title }}</h1>
<div class="content">
{{ content }}
</div>
<a href="{{ page.previous }}">Previous </a>
<a href="{{ page.next }}">Next </a>
</div>
</div>
</body>
</html>