aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/edwin/layouts/_default/single.html
blob: ae9fe127efab037cc2ea4a4072d1ecc61eb4c122 (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
{{ 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 }}