redstrate.com/themes/red/layouts/_default/project.html

14 lines
279 B
HTML
Raw Normal View History

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
{{ 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
<hr>
2023-03-01 14:02:08 -05:00
{{ .Content }}
{{ end }}
2022-08-29 10:50:32 -04:00
{{ end }}