summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..75b71b0
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,47 @@
+---
+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" -%}
+ {{ 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 -%}</p>
+ </header>
+
+ {% if page.blogger_id %}
+ <p><em>Dieser Post wurde ursprünglich auf blogger.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>
+
+<section>
+ <h2>Kommentare?</h2>
+ <p>Da ich die Seite auf den Static Site Generator Jekyll umgestellt habe, gibt es
+ die Möglichkeit, Kommentare zu hinterlassen, (vorerst) nicht mehr.
+ Automatisiert geht es (unter Beibehaltung des Jekyll-Ansatzes) eh nicht, und ich bin
+ auch nicht besonders scharf drauf, Kommentare manuell einzupflegen.
+ </p>
+ <p>
+ Vor allem will ich keinem Spam ausgesetzt sein, das klassische Captcha will ich aber
+ auch nicht einsetzen.
+ </p>
+ <p>
+ Unter der Kontakt-Seite sind jedenfalls Kontaktmöglichkeiten aufgelistet.
+ </p>
+</section>