blog-header-text.html 1.0 KB

1234567891011121314151617181920212223242526
  1. {{ if .Params.header }}
  2. {{ range .Params.header }}
  3. {{ if eq .type "text" }}
  4. <div class="blog-header blog-header__align-{{ .align }}" style="width: 100%; height: {{ $.Param "headerHeight" | default 112 }}px;">
  5. {{ $header := . }}
  6. {{ if .title }}
  7. {{ range .title }}
  8. <div class="blog-header__title" style="font-size: {{ $header.titleFontSize }}px; {{ with $header.titleColor }}color:{{ . }}{{ end }};">
  9. {{ . }}
  10. </div>
  11. {{ end }}
  12. {{ end }}
  13. {{ if .spaceBetweenTitleSubtitle }}
  14. <div style="height: {{ .spaceBetweenTitleSubtitle }}px"></div>
  15. {{ end }}
  16. {{ if .subtitle }}
  17. {{ range .subtitle }}
  18. <div class="blog-header__subtitle" style="font-size: {{ $header.subtitleFontSize }}px; {{ with $header.subtitleColor }}color:{{ . }}{{ end }}" data-cursive="{{ with $header.subtitleCursive }}{{ . }}{{ end }}">
  19. {{ . }}
  20. </div>
  21. {{ end }}
  22. {{ end }}
  23. </div>
  24. {{ end }}
  25. {{ end }}
  26. {{ end }}