github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/themes/docsy/layouts/swagger/baseof.html (about) 1 <!doctype html> 2 <html lang="{{ .Site.Language.Lang }}" class="no-js"> 3 <head> 4 {{ partial "head.html" . }} 5 <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title> 6 <link rel="stylesheet" type="text/css" href="{{ "/css/swagger-ui.css" | relURL }}"> 7 </head> 8 <body class="td-{{ .Kind }}"> 9 <header> 10 {{ partial "navbar.html" . }} 11 </header> 12 <div class="container-fluid td-outer"> 13 <div class="td-main"> 14 <div class="row flex-xl-nowrap"> 15 <aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none"> 16 {{ partial "sidebar.html" . }} 17 </aside> 18 <aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none"> 19 {{ partial "page-meta-links.html" . }} 20 {{ partial "toc.html" . }} 21 {{ partial "taxonomy_terms_clouds.html" . }} 22 </aside> 23 <main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main"> 24 {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} 25 <script src="{{ "/js/swagger-ui-bundle.js" | relURL }}"></script> 26 <script src="{{ "/js/swagger-ui-standalone-preset.js" | relURL }}"></script> 27 {{ block "main" . }}{{ end }} 28 </main> 29 </div> 30 </div> 31 {{ partial "footer.html" . }} 32 </div> 33 {{ partial "scripts.html" . }} 34 </body> 35 </html>