single.html 787 B

12345678910111213141516171819202122232425262728
  1. {{ define "head" }}
  2. {{ if .Params.featuredImg -}}
  3. <style>:root{ --bg-img: url({{.Params.featuredImg | absURL}});}</style>
  4. {{- else if .Params.images -}}
  5. {{- range first 1 .Params.images -}}
  6. <style>:root{ --bg-img: url({{. | absURL}});}</style>
  7. {{- end -}}
  8. {{- end -}}
  9. {{ end }}
  10. {{ define "main" }}
  11. <main id="site-main" class="wrapper">
  12. <div class="title-area">
  13. <a id="home-btn" title="{{.Site.Title}}" href="{{.Site.BaseURL}}"><img src="/apple-touch-icon.png" alt="Logo"></a>
  14. <h1 id="page-title" class="title-area-l">{{ .Title }}</h1>
  15. </div>
  16. <div class="content">
  17. {{ .Content }}
  18. </div>
  19. {{ with .Params.comments -}}
  20. {{ partialCached "comments.html" . }}
  21. {{- end }}
  22. </main>
  23. {{ end }}
  24. {{ define "footer" }}
  25. {{ partialCached "footer.html" . }}
  26. {{ end }}