Clean up the post layout a bit more

This commit is contained in:
R. Tyler Croy 2018-08-16 10:33:46 -07:00
parent 66ec13cc6d
commit f4c0ae887e
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 19 additions and 17 deletions

View File

@ -8,20 +8,22 @@ layout: default
</h1>
</header>
<div class="content post">
<h1 class="post-title">{{ page.title }}</h1>
<div class="post-tags">
{% for tag in page.tags %}
<span>
<strong>
<a href="/tag/{{ tag }}.html">{{ tag }}</a>
</strong>
&nbsp;
</span>
{% endfor %}
</div>
<div class="post-date">
<time>{{ page.date | date_to_string }}</time>
</div>
{{ content }}
</div>
<main class="content">
<div class="post">
<h1 class="post-title">{{ page.title }}</h1>
<div class="post-tags">
{% for tag in page.tags %}
<span>
<strong>
<a href="/tag/{{ tag }}.html">{{ tag }}</a>
</strong>
&nbsp;
</span>
{% endfor %}
</div>
<div class="post-date">
<time>{{ page.date | date_to_string }}</time>
</div>
{{ content }}
</div>
</main>