You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

site-header.html 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. {{ $featured_image := $.Param "featured_image" }}
  2. {{ if $featured_image }}
  3. <header class="cover bg-center" style="background-image: url('{{ $featured_image | absURL }}');">
  4. <div class="bg-black-60">
  5. {{ partial "site-navigation.html" .}}
  6. <div class="tc-l pv4 pv6-l ph3 ph4-ns">
  7. <h1 class="f2 f-subheadline-l fw2 white-90 mb0 lh-title">
  8. {{ .Title | default .Site.Title }}
  9. </h1>
  10. {{ with .Params.description }}
  11. <h2 class="fw1 f5 f3-l white-80 mt3">
  12. {{ . }}
  13. </h2>
  14. {{ end }}
  15. </div>
  16. </div>
  17. </header>
  18. {{ else }}
  19. <header>
  20. <div class="pb3-m pb6-l {{ .Site.Params.background_color_class | default "bg-black" }}">
  21. {{ partial "site-navigation.html" . }}
  22. <div class="tc-l pv3 ph3 ph4-ns">
  23. <h1 class="f2 f-subheadline-l fw2 light-silver mb0 lh-title">
  24. {{ .Title | default .Site.Title }}
  25. </h1>
  26. {{ with .Params.description }}
  27. <h2 class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
  28. {{ . }}
  29. </h2>
  30. {{ end }}
  31. </div>
  32. </div>
  33. </header>
  34. {{ end }}