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 944B

7 lat temu
7 lat temu
7 lat temu
7 lat temu
7 lat temu
123456789101112131415161718192021222324
  1. {{ $featured_image := .Params.featured_image }}
  2. {{ if $featured_image }}
  3. {{/* Trimming the slash and adding absURL make sure the image works no matter where our site lives */}}
  4. {{ $featured_image := (trim $featured_image "/") | absURL }}
  5. <header class="cover bg-top" style="background-image: url('{{ $featured_image }}');">
  6. <div class="pb3-m pb6-l bg-black-60">
  7. {{ partial "site-navigation.html" . }}
  8. <div class="tc-l pv6 ph3 ph4-ns">
  9. <h1 class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</h1>
  10. {{ with .Params.description }}
  11. <h2 class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
  12. {{ . }}
  13. </h2>
  14. {{ end }}
  15. </div>
  16. </div>
  17. </header>
  18. {{ else }}
  19. <header>
  20. <div class="{{ .Site.Params.background_color_class | default "bg-black" }}">
  21. {{ partial "site-navigation.html" . }}
  22. </div>
  23. </header>
  24. {{ end }}