temper-tv/main-site/themes/temper/layouts/_default/single.html
shockrah ce7c682ef5
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 19s
Fixing the sizing on images in feeds and posts
2024-10-07 16:22:06 -07:00

18 lines
477 B
HTML

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