Files
temper-tv/main-site/themes/temper/layouts/_default/single.html
shockrah dfda430ae7
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 19s
new post about the upcoming desk build
2026-07-08 23:31:31 -07:00

16 lines
415 B
HTML

{{ define "main" }}
{{ partial "minimal-navbar.html" }}
<h1>{{ .Title }}</h1>
{{ if .Params.Description }}
<div class="container">
<h5>{{ .Params.Description }}</h5>
{{ if .Params.Thumbnail }}
<a href="{{ .Params.Thumbnail }}">
<img class="card-img" src="{{ .Params.Thumbnail }}">
</a>
{{ end }}
</div>
{{ end }}
<div class="container">{{ .Content }}</div>
{{ end }}