43 lines
853 B
HTML
43 lines
853 B
HTML
{{ define "main" }}
|
|
|
|
<script type="application/ld+json">
|
|
[{
|
|
"@context": "https://schema.org",
|
|
"@type": "BreadcrumbList",
|
|
"itemListElement": [{
|
|
"@type": "ListItem",
|
|
"position": 1,
|
|
"name": "Home",
|
|
"item": "{{ .Site.BaseURL }}"
|
|
}, {
|
|
"@type": "ListItem",
|
|
"position": 2,
|
|
"name": "Blog",
|
|
"item": "{{ .Permalink }}"
|
|
}]
|
|
}]
|
|
|
|
</script>
|
|
|
|
<h1 class="text-center">
|
|
<a href="/social" class="quiet-link px-3"> <i class="fa-duotone theme-fundor333 fa-dice-d12"></i></a>
|
|
{{.Title}}
|
|
<a href="/social" class="quiet-link px-3"> <i class="fa-duotone theme-fundor333 fa-dice-d12"></i></a>
|
|
</h1>
|
|
|
|
|
|
<div class="e-content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ $paginator := .Paginate .Pages }}
|
|
{{ range $paginator.Pages }}
|
|
|
|
{{ .Render "summary" }}
|
|
|
|
{{ end }}
|
|
<hr>
|
|
{{ partial "paginator.html" . }}
|
|
|
|
{{ end }}
|