Compare commits

..

2 Commits

Author SHA1 Message Date
e56e1e8e51 Format
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-09-14 20:09:36 +01:00
3938d190d5 Add comments
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-09-14 19:40:37 +01:00
6 changed files with 15 additions and 11 deletions

View File

@@ -82,7 +82,7 @@ details {
} }
summary::before { summary::before {
content: ''; content: "";
border-width: 0.4rem; border-width: 0.4rem;
border-style: solid; border-style: solid;
border-color: transparent transparent transparent var(--text); border-color: transparent transparent transparent var(--text);

View File

@@ -3,6 +3,10 @@
{{ partial "components/hero/index.html" . }} {{ partial "components/hero/index.html" . }}
<div class="content"> <div class="content">
{{ .Content }} {{ .Content }}
{{ if (default true .Params.comments) }}
{{ partial "comments.html" . }}
{{ end }}
</div> </div>
{{ partial "components/postnav/index.html" . }} {{ partial "components/postnav/index.html" . }}
</main> </main>

View File