summaryrefslogtreecommitdiff
path: root/static/src/_layouts/post.html
blob: 6b97042ed2698b0c71b48cbd7c951738d8b57e48 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
layout: default
---
<article itemscope itemtype="http://schema.org/BlogPosting">

  <header id="post-header">
    <h1 id="post-headline" itemprop="name headline">
      {{ page.title | escape }}
    </h1>
    <div class="light">
      <span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
        <span itemprop="name">{{ site.author }}</span>
      </span>
      <!-- • -->
      <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
        {{ page.date | date: site.date_format }}
      </time>
      •
      {%- if page.updated %}
      <time datetime="{{ page.updated | date_to_xmlschema }}" itemprop="dateModified">
        (Updated {{ page.updated | date: site.date_format }})
      </time>
      •
      {% endif -%}
      <description itemprop="about"><em>{{ page.description }}</em></description>
    </div>
  </header>

  {% if page.series %}
    {% assign foundThis = false %}
    {% for post in site.posts reversed %}
      {% if post.series == page.series %}
        {% if post.url == page.url %}
          {% assign foundThis = true %}
        {% elsif foundThis %}
          {% assign next = post %}
          {% break %}
        {% else %}
          {% assign prev = post %}
        {% endif %}
      {% endif %}
    {% endfor %}
    {% if prev or next %}
      <p class="light"><em>
        This post is part of a series:<br/>
        {% if prev %}
        Previously: <a href="{{ prev.url | relative_url }}">{{ prev.title }}</a></br>
        {% endif %}
        {% if next %}
        Next: <a href="{{ next.url | relative_url }}">{{ next.title }}</a></br>
        {% endif %}
      </em></p>
    {% endif %}
  {% endif %}

  <div id="post-content" itemprop="articleBody">
    {{ content }}
  </div>

  {% if page.git_repo %}
  <p class="light">
    <em>To check this project out locally:</em></br>
    <pre><code>git clone {{ page.git_repo }}
{% if page.git_commit %}git checkout {{ page.git_commit }}{% endif %}</code></pre>
  </p>
  {% endif %}

  {% if prev or next %}
    <p class="light"><em>
      If you liked this post, consider checking out other posts in the series:<br/>
      {% if prev %}
      Previously: <a href="{{ prev.url | relative_url }}">{{ prev.title }}</a></br>
      {% endif %}
      {% if next %}
      Next: <a href="{{ next.url | relative_url }}">{{ next.title }}</a></br>
      {% endif %}
    </em></p>
  {% endif %}

</article>