/
Undeadguy
/
matrix-spec
Обзор
Документация
Войти
/
Undeadguy
/
matrix-spec
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
layouts/docs/baseof.html
43 строки
1 KB
Richard van der Hoff
Fix broken link to katex CSS (#2241)
31 окт 2025, 14:02
Не верифицирован
31 окт 2025, 14:02
4783619
Код
Авторство
О чём код?
{{/* A copy of the baseof.html partial in Docsy, modified to remove the right-hand column from the layout. */}} <!doctype html> <html itemscope itemtype="http://schema.org/WebPage" {{- with .Site.Language.LanguageDirection }} dir="{{ . }}" {{- end -}} {{ with .Site.Language.Lang }} lang="{{ . }}" {{- end }} {{/**/ -}} class="no-js"> <head> {{ partial "head.html" . }} {{ if .Page.Store.Get "hasMath" }} <link href="{{ relURL "css/katex.min.css" }}" rel="preload" as="style"> <link href="{{ relURL "css/katex.min.css" }}" rel="stylesheet"> {{ end }} </head> <body class="td-{{ .Kind }}{{ with .Page.Params.body_class }} {{ . }}{{ end }}"> <header> {{ partial "navbar.html" . }} </header> <div class="container-fluid td-outer"> <div class="td-main"> <div class="row flex-xl-nowrap"> <aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none"> {{ partial "sidebar.html" . }} </aside> <main class="col-12 col-md-9 col-xl-8 ps-md-5" role="main"> {{ partial "version-banner.html" . }} {{ if not (.Param "ui.breadcrumb_disable") -}} {{ partial "breadcrumb.html" . -}} {{ end -}} {{ block "main" . }}{{ end }} </main> </div> </div> {{ partial "footer.html" . }} </div> {{ partial "scripts.html" . }} </body> </html>