1234567891011121314151617181920212223242526272829303132 |
- {{ define "head" }}
- {{ if .Params.featuredImg -}}
- <style>.bg-img {background-image: url('{{.Params.featuredImg | absURL}}');}</style>
- {{- else if .Params.images -}}
- {{- range first 1 .Params.images -}}
- <style>.bg-img {background-image: url('{{. | absURL}}');}</style>
- {{- end -}}
- {{- end -}}
- {{ end }}
- {{ define "header" }}
- {{ partial "header.html" . }}
- {{ end }}
- {{ define "main" }}
- {{- if (or .Params.images .Params.featuredImg) }}
- <div class="bg-img"></div>
- {{- end }}
- <main class="site-main section-inner thin animated fadeIn faster">
- <h1>{{ .Title }}</h1>
- <div class="content">
- {{ .Content }}
- </div>
- {{ with .Params.comments -}}
- {{ partialCached "comments.html" . }}
- {{- end }}
- </main>
- {{ end }}
- {{ define "footer" }}
- {{ partialCached "footer.html" . }}
- {{ end }}
|