layouts/blog/baseof.html (51 lines of code) (raw):

<!doctype html> <html lang="{{ .Site.Language.Lang }}" class="no-js"> <head> {{ partial "head.html" . }} </head> <body class="td-{{ .Kind }} td-documentation"> <header> {{ partial "navbar.html" . }} {{ partial "announcement.html" . }} {{ block "hero" . }} <section class="header-hero text-white pb-0 light-text "> <!-- {{ if not .Params.notitle }}--> <!-- <h1>{{ .Title }}</h1>--> <!-- {{ end }}--> </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.Config.Services.GoogleAnalytics.ID)) }} {{ partial "feedback.html" .Site.Params.ui.feedback }} {{ end }} <!-- {{ partial "page-meta-lastmod.html" . }}--> {{ if (.Site.Config.Services.Disqus.Shortname) }} <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" . }} {{ partial "taxonomy_terms_clouds.html" . }} </div> </div> </div> </div> {{ partial "footer.html" . }} {{ partial "scripts.html" . }} </body> </html>