baseof.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!doctype html>
  2. <html itemscope itemtype="http://schema.org/WebPage"
  3. {{- with .Site.Language.LanguageDirection }} dir="{{ . }}" {{- end -}}
  4. {{ with .Site.Language.Lang }} lang="{{ . }}" {{- end }} {{/**/ -}}
  5. class="no-js">
  6. <head>
  7. {{ partial "head.html" . }}
  8. </head>
  9. <body class="td-{{ .Kind }}{{ with .Page.Params.body_class }} {{ . }}{{ end }}">
  10. <header>
  11. {{ partial "navbar.html" . }}
  12. </header>
  13. <div class="container-fluid td-outer">
  14. <div class="td-main">
  15. <div class="row flex-xl-nowrap">
  16. <aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
  17. {{ partial "sidebar.html" . }}
  18. </aside>
  19. <aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
  20. {{ partial "page-meta-links.html" . }}
  21. {{ partial "toc.html" . }}
  22. {{ partial "taxonomy_terms_clouds.html" . }}
  23. </aside>
  24. <main class="col-12 col-md-9 col-xl-8 ps-md-5" role="main">
  25. {{ partial "version-banner.html" . }}
  26. {{ if not (.Param "ui.breadcrumb_disable") -}}
  27. {{ partial "breadcrumb.html" . -}}
  28. {{ end -}}
  29. {{ block "main" . }}{{ end }}
  30. </main>
  31. </div>
  32. </div>
  33. {{ partial "footer.html" . }}
  34. </div>
  35. {{ partial "scripts.html" . }}
  36. </body>
  37. </html>