summaryrefslogtreecommitdiff
path: root/_layouts.gemini/post.html
blob: 9ce3141b517f9c81b7fdbebe0330230f8c836a8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
---
    <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
    <p class="post-meta">
      <p>
        {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
        {%- assign date_format = "%A, %e. %B %Y, %k:%M" -%}
        Published: {{ page.date | date: date_format }}

      {%- if page.last_modified_at -%}
      - 
        Updated: {{ page.last_modified_at | date: date_format }}
      {%- endif -%}
      </p>

      {%- if page.author -%}
        - <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span>
      {%- endif -%}
    </p>
  <div class="post-content e-content" itemprop="articleBody">
    {{ content }}
  </div>