aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/edwin/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'generators/hugo/themes/edwin/layouts/_default/single.html')
-rw-r--r--generators/hugo/themes/edwin/layouts/_default/single.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/generators/hugo/themes/edwin/layouts/_default/single.html b/generators/hugo/themes/edwin/layouts/_default/single.html
new file mode 100644
index 0000000..ae9fe12
--- /dev/null
+++ b/generators/hugo/themes/edwin/layouts/_default/single.html
@@ -0,0 +1,33 @@
+{{ define "main" }}
+
+
+<h2 class="text-gray-700 text-2xl font-bold mb-2">{{ .Title | markdownify }}</h2>
+
+<p class="mb-1 text-gray-700">{{ partial "post-date" . }}</p>
+
+<p class=" text-gray-700 mb-4">{{ partial "post-tags" . }}</p>
+
+
+<article class="journal-post">
+ {{ .Content | replaceRE "<p>" "<p class=\"leading-normal text-gray-900 text-xl mb-4\">" | safeHTML }}
+
+ {{ if .IsTranslated }}
+ <h4>{{ i18n "translations" }}</h4>
+ <ul>
+ {{ range .Translations }}
+ <li>
+ <a href="{{ .RelPermalink }}">{{ .Lang }}: {{ .Title }}</a>
+ </li>
+ {{ end }}
+ </ul>
+ {{ end }}
+
+ {{ partial "related" . }}
+</article>
+
+
+<script>document.write('<h4 class="text-3xl mt-2 mb-4 text-red-500 font-bold">Comments</h4>');</script>
+<script type="text/javascript" src="/comments"></script>
+
+
+{{ end }}