Files
.gitea
archetypes
content
layouts
static
themes
hugo-scroll
.github
archetypes
exampleSite
images
layouts
_default
baseof.html
list.html
single.html
partials
shortcodes
404.html
index.html
static
.gitignore
.prettierignore
.prettierrc.json
LICENSE
README.md
package-lock.json
package.json
theme.toml
.gitlab-ci.yml
.hugo_build.lock
config.toml
lb-dk-2022/themes/hugo-scroll/layouts/_default/single.html
2022-08-30 18:42:00 +02:00

16 lines
424 B
HTML

{{ define "main" }}
<main class="content page-template page-{{ .Slug }}" role="main">
<article class="post page">
<header class="post-header">
<a id="blog-logo" href="{{ "/" | relURL }}">
{{ .Site.Title }}
</a>
</header>
<h1 class="post-title">{{ .Title }}</h1>
<section class="post-content">
{{ .Content }}
</section>
</article>
</main>
{{ end }}