hacks-guide-minimal-mistake.../_layouts/post.html

51 lines
2.1 KiB
HTML
Raw Normal View History

2016-02-22 22:46:49 +01:00
---
layout: default
---
2016-02-23 03:22:07 +01:00
{% include absolute-url.liquid %}
2016-02-23 04:46:59 +01:00
<article class="post" itemscope itemtype="http://schema.org/CreativeWork">
2016-02-24 22:10:45 +01:00
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
2016-02-23 04:46:59 +01:00
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
{% if page.modified %}<meta itemprop="dateModified" content="{{ page.modified | date: "%B %d, %Y" }}">{% endif %}
<div class="article-wrap">
2016-02-23 04:46:59 +01:00
<header>
{% if page.link %}
<h1 itemprop="headline"><a href="{{ page.link }}">{{ page.title }}</a></h1>
{% else %}
<h1 itemprop="headline"><a href="{{ absurl }}{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1>
{% endif %}
</header>
2016-02-23 04:46:59 +01:00
<section itemprop="text">
2016-02-22 22:46:49 +01:00
{{ content }}
2016-02-23 04:46:59 +01:00
</section>
2016-02-22 22:46:49 +01:00
<hr />
2016-02-23 04:46:59 +01:00
2016-02-22 22:46:49 +01:00
<footer role="contentinfo">
{% if page.share %}{% include social-share.html %}{% endif %}
{% if page.date %}
<p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p>
{% endif %}
2016-02-22 22:46:49 +01:00
</footer>
</div><!-- /.article-wrap -->
2013-05-24 16:25:31 +02:00
{% if site.disqus_shortname and page.comments %}
2014-03-25 17:25:21 +01:00
<section id="disqus_thread"></section><!-- /#disqus_thread -->
{% endif %}
2016-02-22 22:46:49 +01:00
</article>
2013-05-24 16:25:31 +02:00
{% comment %}<!-- only show related on a post page -->{% endcomment %}
{% if page.id and site.related_posts.size > 0 %}
2014-02-27 21:00:37 +01:00
<div class="related-articles">
2016-02-22 22:16:15 +01:00
<h4>You might also enjoy <small class="pull-right">(<a href="{{ absurl }}/posts/">View all posts</a>)</small></h4>
2013-05-24 16:25:31 +02:00
<ul>
{% for post in site.related_posts limit:3 %}
2016-02-22 22:16:15 +01:00
<li><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li>
2013-05-24 16:25:31 +02:00
{% endfor %}
</ul>
<hr />
2014-02-27 21:00:37 +01:00
</div><!-- /.related-articles -->
2016-02-22 22:46:49 +01:00
{% endif %}