baseof.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 }} td-blog {{- 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 pe-md-4" role="main">
  25. {{ with .CurrentSection.OutputFormats.Get "rss" -}}
  26. <a class="td-rss-button" title="RSS" href="{{ .RelPermalink | safeURL }}" target="_blank" rel="noopener">
  27. <i class="fa-solid fa-rss" aria-hidden="true"></i>
  28. </a>
  29. {{ end -}}
  30. {{ if not (.Param "ui.breadcrumb_disable") -}}
  31. {{ partial "breadcrumb.html" . -}}
  32. {{ end -}}
  33. {{ block "main" . }}{{ end }}
  34. </main>
  35. </div>
  36. </div>
  37. {{ partial "footer.html" . }}
  38. </div>
  39. {{ partial "scripts.html" . }}
  40. </body>
  41. </html>