baseof.html 798 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. {{- $language_code := site.LanguageCode | default "en-us" -}}
  3. <html lang="{{$language_code}}" {{ if in site.Data.i18n.rtl.rtl $language_code }}dir="rtl"{{end}}>
  4. {{ partial "site_head" . }}
  5. <body id="top" data-spy="scroll" data-offset="70" data-target="{{ if or .IsHome (eq .Type "widget_page") }}#navbar-main{{else}}#TableOfContents{{end}}" {{ if not (.Scratch.Get "light") }}class="dark"{{end}}>
  6. {{ partial "search" . }}
  7. {{ partial "navbar" . }}
  8. {{ block "main" . }}{{ end }}
  9. {{ partial "site_js" . }}
  10. {{/* Docs and Updates layouts include the site footer in a different location. */}}
  11. {{ if not (in (slice "docs" "updates") .Type) }}
  12. <div class="container">
  13. {{ partial "site_footer" . }}
  14. </div>
  15. {{ end }}
  16. {{ partial "citation" . }}
  17. </body>
  18. </html>