single.html 763 B

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