13 lines
466 B
HTML
13 lines
466 B
HTML
{{ define "main" }}
|
|
<main class="content page-template page-{{ .Slug }}">
|
|
<article class="post page">
|
|
<header class="post-header">
|
|
<a id="blog-logo" href="{{ "/" | relURL }}"><i class="fa fa-chevron-left" aria-hidden="true"></i> {{ .Site.Title }}</a>
|
|
</header>
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
<section class="post-content post-content-single">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
</main>
|
|
{{ end }}
|