website_lea/layouts/cinema/single.html

22 lines
431 B
HTML
Raw Normal View History

2025-02-02 21:45:08 +01:00
{{ partial "header.html" . }}
<body>
<main class="wrapper">
{{ partial "navigation.html" . }}
<section class="container archive">
<article>
<header class="post-header">
<h1 class="post-title">
{{ .Title }}
</h1>
{{ partial "scratch.html" . }}
</header>
<div class="archive-body">
{{ .Content }}
</div>
{{ partial "article-footer.html" . }}
</article>
</section>
</main>
</body>
</html>