single.html 881 B

1234567891011121314151617181920212223242526272829303132
  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 "header" }}
  11. {{ partialCached "header.html" . }}
  12. {{ end }}
  13. {{ define "main" }}
  14. <main id="site-main" class="wrapper">
  15. <div class="title-area">
  16. <a id="home-btn" title="{{.Site.Title}}" href="{{.Site.BaseURL}}"><img src="/apple-touch-icon.png" width="180" height="180" alt="Logo"></a>
  17. <h1 id="page-title" class="title-area-l">{{ .Title }}</h1>
  18. </div>
  19. <div class="content">
  20. {{ .Content }}
  21. </div>
  22. {{ with .Params.comments -}}
  23. {{ partialCached "comments.html" . }}
  24. {{- end }}
  25. </main>
  26. {{ end }}
  27. {{ define "footer" }}
  28. {{ partialCached "footer.html" . }}
  29. {{ end }}