summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html20
-rw-r--r--_layouts/page.html14
-rw-r--r--_layouts/post.html35
3 files changed, 0 insertions, 69 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
deleted file mode 100644
index e4ab96f..0000000
--- a/_layouts/default.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-
- {% include head.html %}
-
- <body>
-
- {% include header.html %}
-
- <div class="page-content">
- <div class="wrapper">
- {{ content }}
- </div>
- </div>
-
- {% include footer.html %}
-
- </body>
-
-</html>
diff --git a/_layouts/page.html b/_layouts/page.html
deleted file mode 100644
index ce233ad..0000000
--- a/_layouts/page.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: default
----
-<article class="post">
-
- <header class="post-header">
- <h1 class="post-title">{{ page.title }}</h1>
- </header>
-
- <div class="post-content">
- {{ content }}
- </div>
-
-</article>
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index 5078b91..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-layout: default
----
-<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
-
- <header class="post-header">
- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
- <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span 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" itemprop="articleBody">
- {{ content }}
- </div>
-
-</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>