hugo-site/layouts/_default/single.html
greg 2866717694
Some checks failed
continuous-integration/drone/push Build is failing
error but built
2026-01-06 23:56:45 +01:00

27 lines
459 B
HTML

{{ define "head" }}
<style type="text/css">
p {
text-align: center;
}
img {
max-width: 95%
}
</style>
{{ end }}
{{ define "title" }}
{{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div class="container mt-4 post">
<!-- <h1>{{ .Title }}</h1> -->
{{ partial "post-meta" . }}
<div class="mt-4 mb-4 main-content">
{{ .Content }}
</div>
</div>
{{ end }}