2022-08-29 10:50:32 -04:00
|
|
|
{{ define "main" }}
|
2022-12-27 22:34:31 -05:00
|
|
|
<h2>{{ .Title }}</h2>
|
2022-08-29 10:50:32 -04:00
|
|
|
|
2025-04-12 18:38:56 -04:00
|
|
|
{{ if (and ($.Param "source") (not .Content)) }}
|
|
|
|
{{- template "alias.html" (dict "Permalink" .Params.source) -}}
|
|
|
|
{{ else }}
|
|
|
|
<p>{{ .Summary }}</p>
|
2022-08-29 10:50:32 -04:00
|
|
|
|
2025-04-12 18:38:56 -04:00
|
|
|
<hr>
|
2023-03-01 14:02:08 -05:00
|
|
|
|
2025-04-12 18:38:56 -04:00
|
|
|
{{ .Content }}
|
|
|
|
{{ end }}
|
2022-08-29 10:50:32 -04:00
|
|
|
{{ end }}
|