53 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!doctype html>
 | |
| <html lang="{{ .Site.Language.Lang }}" class="no-js">
 | |
|   <head>
 | |
|     {{ partial "head.html" . }}
 | |
|     <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
 | |
|   </head>
 | |
|   <body class="td-{{ .Kind }} td-documentation">
 | |
|     <header>
 | |
|       {{ partial "navbar.html" . }}
 | |
|       {{ partial "announcement.html" . }}
 | |
|       {{ block "hero" . }}
 | |
|         <section class="header-hero filler">
 | |
|         </section>
 | |
|          {{ block "hero-more" . }}{{ end }}
 | |
|       {{ end }}
 | |
|     </header>
 | |
|     <div class="container-fluid td-outer">
 | |
|       <div class="td-main">
 | |
|         <div class="row flex-md-nowrap">
 | |
|           <div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
 | |
|             {{ partial "sidebar.html" . }}
 | |
|           </div>
 | |
|           <main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
 | |
|             {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }}
 | |
|             {{ block "deprecated" . }}
 | |
|               {{ partial "deprecation-warning.html" . }}
 | |
|             {{ end }}
 | |
|               {{ block "main" . }}{{ end }}
 | |
|               {{- if .HasShortcode "thirdparty-content" -}}
 | |
|                 {{ block "thirdparty-disclaimer" . }}
 | |
|                   {{ partial "docs/thirdparty-disclaimer.html" . }}
 | |
|                 {{- end -}}
 | |
|               {{- end -}}
 | |
|             {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }}
 | |
|               {{ partial "feedback.html" .Site.Params.ui.feedback }}
 | |
|             {{ end }}
 | |
|             {{ partial "page-meta-lastmod.html" . }}
 | |
|             {{ if (.Site.DisqusShortname) }}
 | |
|               <br />
 | |
|               {{ partial "disqus-comment.html" . }}
 | |
|             {{ end }}
 | |
|           </main>
 | |
|           <div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
 | |
|             {{ partial "toc.html" . }}
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|     {{ partial "footer.html" . }}
 | |
|     {{ partial "scripts.html" . }}
 | |
|   </body>
 | |
| </html>
 |