summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: a6bdec5c1843f0d75d78a97df48b3babb7b405a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: master
---

<article itemscope itemtype="http://schema.org/BlogPosting">
  <header>
    <h1 itemprop="headline">{{ page.title }}</h1>
    <p class="muted sans">
      <span itemprop="author" itemscope itemtype="http://schema.org/Person">by
        <span itemprop="name">Ben Burwell</span>
      </span>
      <a href="https://twitter.com/bburwell">@bburwell</a> &bull;
      <time datetime="{{ post.date | date: '%Y-%m-%d' }}" itemprop="datePublished">{{ page.date | date: "%A, %-d %B %Y" }}</time>
    </p>
  </header>

  <div itemprop="articleBody">
    {{ content }}
  </div>
</article>

<div class="columns">
  <div class="one-third column">
    <p class="text-left sans">
      {% if page.previous %}
      <a href="{{ page.previous.url }}"><i class="fa fa-lg fa-chevron-left"></i> Older Post</a>
      {% endif %}
    </p>
  </div>
  
  <div class="one-third column text-center">
    <p>
      <a title="Share/Discuss on Hacker News" target="_blank" href="https://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&amp;t={{ page.title }}"><i class="fa fa-2x fa-hacker-news"></i></a>
      <a title="Share on Twitter" target="_blank" href="https://twitter.com/intent/tweet?text={{ page.title }}&amp;url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}"><i class="fa fa-2x fa-twitter-square"></i></a>
      <a title="Share on Facebook" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}"><i class="fa fa-2x fa-facebook-square"></i></a>
      <a title="Share on Google+" target="_blank" href="https://plus.google.com/share?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&amp;t={{ page.title }}"><i class="fa fa-2x fa-google-plus-square"></i></a>
    </p>
  </div>

  <div class="one-third column">
    <p class="text-right sans">
      {% if page.next %}
      <a href="{{ page.next.url }}">Newer Post <i class="fa fa-lg fa-chevron-right"></i></a>
      {% endif %}
    </p>
  </div>
</div>