_layouts/post.html in jekyll-theme-tallneck-0.1.2 vs _layouts/post.html in jekyll-theme-tallneck-0.2.0

- old
+ new

@@ -1,27 +1,24 @@ --- layout: base --- -<div id="content" class="container content" itemscope itemtype="http://schema.org/BlogPosting"> - <h1 itemprop="name headline">{{ page.title }}</h1> - <p class="content__info"> - <time datetime="{{ date | date_to_xmlschema }}" itemprop="datePublished"> - {{ page.date | date: "%-d %B %Y" }} - </time> - {% if page.author %} - &nbsp;&nbsp;|&nbsp;&nbsp; - <span itemprop="author" itemscope itemtype="http://schema.org/Person"> - <span itemprop="name">{{ page.author }}</span> - </span> +<div class="content-width"> + <div class="post-header"> + <h1 class="post-header--title">{{ page.title }}</h1> + {% if page.no_meta %} + {% else %} + <p class="post-header--meta"> + <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> + {{ page.date | date: "%-d %B %Y" }} + </time> + {% if page.keywords %} + | <span class="post-header--keywords">{{ page.keywords }}</span> + {% endif %} + </p> {% endif %} - <br> - This work is licensed under <a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. - </p> - - <div id="toc"> - {% toc %} </div> - <div itemprop="articleBody"> + + <div class="post-content"> {{ content }} </div> </div> \ No newline at end of file