blog-header-img.html 1.2 KB

123456789101112131415161718192021222324252627
  1. {{ if .Params.header }}
  2. {{ range .Params.header }}
  3. {{ if eq .type "img" }}
  4. <div class="blog-header blog-header__align-{{ .align }}" style="background-image: url('{{ .imageSrc | relURL }}'); background-size: {{ .imageSize }};
  5. background-repeat: {{ .imageRepeat }}; background-position: {{ .imagePosition }}; width: 100%; height: {{ .height }}px; padding: {{ .paddingY }}px {{ .paddingX }}px;">
  6. {{ $header := . }}
  7. {{ if .title }}
  8. {{ range .title }}
  9. <div class="blog-header__title {{ if $header.titleShadow }}blog-header__title--shadow{{ end }}" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
  10. {{ . }}
  11. </div>
  12. {{ end }}
  13. {{ end }}
  14. {{ if .spaceBetweenTitleSubtitle }}
  15. <div style="height: {{ .spaceBetweenTitleSubtitle }}px"></div>
  16. {{ end }}
  17. {{ if .subtitle }}
  18. {{ range .subtitle }}
  19. <div class="blog-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}">
  20. {{ . }}
  21. </div>
  22. {{ end }}
  23. {{ end }}
  24. </div>
  25. {{ end }}
  26. {{ end }}
  27. {{ end }}