.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
16 lines
424 B
HTML
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 }}
|