abdullahtarawneh.com/layouts/_default/single.html

16 lines
332 B
HTML
Raw Normal View History

2020-10-10 19:09:30 +00:00
{{ define "main" }}
<main class="single">
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ .Title }}</h1>
<p class="page-summary">{{.Summary}}</p>
</div>
</header>
<section class="section content">
<div class="container">
{{ .Content }}
</div>
</section>
2020-10-10 19:09:30 +00:00
</main>
{{ end }}