summaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 73c8d8824362d46c611e103d53d5ebcdd1132f2d (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
---
layout: default
---
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">

  <header class="post-header">
    <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
    <p class="post-meta">
      <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
        {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
        {%- assign date_format = "%A, %e. %B %Y, %k:%M" -%}
        {{ page.date | date: date_format }}
      </time>
      {%- 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 -%}
      {%- if page.categories -%}
      <span>, Kategorie: {{ page.categories | array_to_sentence_string }}</span>
      {%- endif -%}
    </p>
  </header>

  {% if page.blogger_id %}
    <p><em>Dieser Post wurde ursprünglich auf blogger.com / uvok.blogspot.com veröffentlicht.</em></p>
  {% endif %}

  {% if page.ljimport %}
    <p><em>Dieser Post wurde ursprünglich auf livejournal.com veröffentlicht.</em></p>
  {% endif %}

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

  {%- if site.disqus.shortname -%}
    {%- include disqus_comments.html -%}
  {%- endif -%}

  <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
</article>

{% include commentNotice.html %}

<!-- <script src="/assets/js/extLinks.js"></script> -->