2021-12-15 10:29:58 +00:00
|
|
|
{{ define "main" }}
|
2022-01-20 07:24:13 +00:00
|
|
|
<main class="main single">
|
2021-12-15 10:29:58 +00:00
|
|
|
<article class="h-entry">
|
|
|
|
<header>
|
2024-11-24 10:40:39 +00:00
|
|
|
<h1 class="p-name single"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h1>
|
|
|
|
<div class="metadata"><span class="from p-author">{{ if .Params.contributors }}By <b>{{range .Params.contributors}} <a href='{{ "/contributors/" | relLangURL }}{{ . | urlize }}/'> {{ . }},</a> {{ end }}</b>{{ end }} {{with .Params.original_link }}originally posted on <b><a href="{{ . }}">{{ end }}{{ .Params.feed_name }}</a></b> on <time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time></span></div>
|
|
|
|
</header>
|
2021-12-15 10:29:58 +00:00
|
|
|
<div class="e-content">
|
2024-11-24 10:40:39 +00:00
|
|
|
{{with .Params.featured_image}}<img src="{{.}}"></img>{{end}}
|
2021-12-15 10:29:58 +00:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|