hugo-scroll/layouts/_default/single.html
Mark Niemeyer e00ab80692 change id of back button on single pages
prev. the css of blog-logo was applied
2024-06-12 00:11:58 +02:00

13 lines
457 B
HTML

{{ define "main" }}
<main class="content page-template page-{{ .Slug }}">
<article class="post page">
<header class="post-header">
<a id="back-to-main-page" href="{{ "" | relLangURL }}"><i class="fa fa-chevron-left" aria-hidden="true"></i> {{ .Site.Title }}</a>
</header>
<h1 class="post-title">{{ .Title }}</h1>
<section class="post-content">
{{ .Content }}
</section>
</article>
</main>
{{ end }}