lugo/layouts/_default/single.html

12 lines
281 B
HTML
Raw Normal View History

2022-04-14 20:07:48 +00:00
{{ partial "header.html" . }}
2022-06-23 11:59:22 +00:00
<header><h1>{{ with .Params.icon }}<img src="/pix/{{ . }}" class=titleimg>{{ end }}{{ .Title }}</h1></header>
2022-04-14 20:07:48 +00:00
2022-06-23 11:59:22 +00:00
<article>{{ with .Params.img }}<img src="/pix/{{ . }}" class=titleimg>{{ end }}
2022-05-27 00:46:49 +00:00
2022-04-14 20:07:48 +00:00
{{ .Content }}
2022-05-27 00:46:49 +00:00
</article>
2022-04-14 20:07:48 +00:00
{{ partial "footer.html" . }}