選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

site-header.html 1.0KB

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