From 853ebb79080f857925f45f3b35328564aea07b8b Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Wed, 28 Sep 2022 17:57:04 +0000
Subject: [PATCH] fix: reset main to master

---
 layouts/_default/single.html |  142 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 142 insertions(+), 0 deletions(-)

diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..ddef496
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,142 @@
+{{ define "main" }}
+  <div
+    class="post {{ with .Site.Params.doNotLoadAnimations }}
+      .
+
+    {{ else }}
+      animated fadeInDown
+
+    {{ end }}"
+  >
+    {{ if .Params.thumbnail }}
+      <div class="post__thumbnail-wrapper">
+        <img class="post__thumbnail" src="{{ .Params.thumbnail | relURL }}" alt="Thumbnail image" />
+      </div>
+
+    {{ end }}
+    <div class="post__content">
+      <h1>{{ title .Title }}</h1>
+      {{ if or (eq .Type "post") (eq .Type .Site.Params.postSectionName) }}
+        <ul class="post__meta">
+          <li class="post__meta-item">
+            <em class="fas fa-calendar-day post__meta-icon"></em>
+            <span class="post__meta-text"
+              >{{ if isset .Site.Params "singledateformat" }}
+                {{ if .Site.Params.localizedDates }}
+                  {{ time.Format .Site.Params.singleDateFormat .Date }}
+
+
+                {{ else }}
+                  {{ .Date.Format .Site.Params.singleDateFormat }}
+
+
+                {{ end }}
+
+
+              {{ else }}
+                {{ if .Site.Params.localizedDates }}
+                  {{ time.Format "Mon, Jan 2, 2006" .Date }}
+
+
+                {{ else }}
+                  {{ .Date.Format "Mon, Jan 2, 2006" }}
+
+
+                {{ end }}
+
+
+              {{ end }}
+            </span>
+          </li>
+          <li class="post__meta-item">
+            <em class="fas fa-stopwatch post__meta-icon"></em>
+            <span class="post__meta-text">{{ i18n "reading_time" .ReadingTime }}</span>
+          </li>
+        </ul>
+
+      {{ end }}
+
+      {{- partial "expirationnote.html" . -}}
+
+      {{- if (eq .Params.toc true) -}}
+        <h3>Table of Contents</h3>
+        {{ .TableOfContents }}
+
+
+      {{- end -}}
+
+      {{ .Content }}
+
+      {{- if isset .Params "series" -}}
+        {{- partial "series.html" . -}}
+
+
+      {{- end -}}
+
+      {{- if (eq .Site.Params.relatedPosts true) -}}
+        {{- partial "related.html" . -}}
+
+
+      {{- end -}}
+
+      {{- if (eq .Params.contact true) -}}
+        {{- partial "contact.html" . -}}
+
+
+      {{- end -}}
+
+      {{- if (eq .Site.Params.mermaid.enable true) -}}
+        {{- partial "mermaid.html" . -}}
+
+
+      {{- end -}}
+    </div>
+    <div class="post__footer">
+      {{ with .Page.Params.Categories }}
+        {{ partial "taxonomy/categories.html" . }}
+
+
+      {{ end }}
+
+      {{ with .Page.Params.Tags }}
+        {{ partial "taxonomy/tags.html" . }}
+
+
+      {{ end }}
+    </div>
+
+    {{ if and (or (eq .Type "post") (eq .Type .Site.Params.postSectionName)) (ne .Page.Params.disableComments true) }}
+      {{- if .Site.DisqusShortname -}}
+        <div id="comment">
+          <h2>{{ i18n "comments" }}</h2>
+          {{ template "_internal/disqus.html" . }}
+        </div>
+
+      {{- end -}}
+      {{- if .Site.Params.utterances.repo -}}
+        <div id="comment">
+          <h2>{{ i18n "comments" }}</h2>
+          {{ partial "comments/utterances.html" . }}
+        </div>
+
+      {{- end -}}
+      {{- if .Site.Params.CommentoURL -}}
+        <div id="comment">
+          <h2>{{ i18n "comments" }}</h2>
+          {{ partial "comments/commento.html" . }}
+        </div>
+
+      {{- end -}}
+      {{- if .Site.Params.gitalk.repo -}}
+        <div id="comment">
+          <h2>{{ i18n "comments" }}</h2>
+          {{ partial "comments/gitalk.html" . }}
+        </div>
+
+      {{- end -}}
+
+
+    {{ end }}
+  </div>
+
+{{ end }}

--
Gitblit v1.10.0