hugo-scroll/layouts/_default/single.html

15 lines
447 B
HTML
Raw Normal View History

2020-07-07 08:37:57 +00:00
{{ define "main" }}
<main class="content page-template page-{{ .Slug }}" role="main">
<article class="post page">
<header class="post-header">
<a id="blog-logo" href="{{ "/" | absURL }}">
{{ .Site.Title }}
</a>
</header>
<h1 class="post-title">{{ .Title }}</h1>
<section class="post-content">
{{ .Content }}
</section>
</article>
</main>
{{ end }}