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.

page-header.html 789B

12345678910111213141516171819202122
  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="pb3-m pb6-l bg-black-60">
  5. {{ partial "site-navigation.html" . }}
  6. <div class="tc-l pv6 ph3 ph4-ns">
  7. <h1 class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</h1>
  8. {{ with .Params.description }}
  9. <h2 class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
  10. {{ . }}
  11. </h2>
  12. {{ end }}
  13. </div>
  14. </div>
  15. </header>
  16. {{ else }}
  17. <header>
  18. <div class="{{ .Site.Params.background_color_class | default "bg-black" }}">
  19. {{ partial "site-navigation.html" . }}
  20. </div>
  21. </header>
  22. {{ end }}