abdullahtarawneh.com/layouts/_default/single.html

35 lines
808 B
HTML
Raw Normal View History

2020-10-10 19:09:30 +00:00
{{ define "title" }}
2020-10-16 20:00:32 +00:00
{{ .Title }} | {{ .Site.Title }}
2020-10-10 19:09:30 +00:00
{{ end }}
{{ define "main" }}
<main>
<article class="page">
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ .Title }}</h1>
</div>
</header>
2020-10-16 20:00:32 +00:00
<aside class="meta section">
2020-10-10 19:09:30 +00:00
<div class="container">
2020-10-16 20:00:32 +00:00
<datetime class="date"> {{ .Date.Format "Mon Jan 2, 2006" }} </datetime>
<p class="wordcount"> {{.WordCount}} words</p>
{{ with .Params.tags }}
<p>Keywords:</p>
<ul class="tags">
{{ range . }}
<li><a href='{{"tags/" | absURL }}{{. | urlize}}'>{{.}}</a></li>
{{ end }}
</ul>
{{ end }}
2020-10-10 19:09:30 +00:00
{{ .TableOfContents }}
2020-10-16 20:00:32 +00:00
</div>
</aside>
<section class="section">
<div class="container">
2020-10-10 19:09:30 +00:00
{{ .Content }}
</div>
</section>
</article>
</main>
{{ end }}