abdullahtarawneh.com/layouts/_default/single.html

18 lines
364 B
HTML
Raw Normal View History

2020-10-10 19:09:30 +00:00
{{ define "main" }}
<main>
<article class="page">
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ .Title }}</h1>
2020-10-17 02:41:13 +00:00
<p class="page-summary">{{.Summary}}</p>
2020-10-10 19:09:30 +00:00
</div>
</header>
2024-03-13 06:54:20 +00:00
<section class="section content">
2020-10-16 20:00:32 +00:00
<div class="container">
2020-10-10 19:09:30 +00:00
{{ .Content }}
</div>
</section>
</article>
</main>
{{ end }}