single.html 802 B

1234567891011121314151617181920212223242526272829303132
  1. {{ define "head" }}
  2. {{ if .Params.featuredImg -}}
  3. <style>.bg-img {background-image: url('{{.Params.featuredImg | absURL}}');}</style>
  4. {{- else if .Params.images -}}
  5. {{- range first 1 .Params.images -}}
  6. <style>.bg-img {background-image: url('{{. | absURL}}');}</style>
  7. {{- end -}}
  8. {{- end -}}
  9. {{ end }}
  10. {{ define "header" }}
  11. {{ partial "header.html" . }}
  12. {{ end }}
  13. {{ define "main" }}
  14. {{- if (or .Params.images .Params.featuredImg) }}
  15. <div class="bg-img"></div>
  16. {{- end }}
  17. <main class="site-main section-inner thin animated fadeIn faster">
  18. <h1>{{ .Title }}</h1>
  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 }}