| <!doctype html> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --><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" . }} |
| </head> |
| <body class="td-{{ .Kind }} td-blog {{- 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-10 ps-md-5 pe-md-4" role="main"> |
| {{ with .CurrentSection.OutputFormats.Get "rss" -}} |
| <a class="td-rss-button" title="RSS" href="{{ .RelPermalink | safeURL }}" target="_blank" rel="noopener"> |
| <i class="fa-solid fa-rss" aria-hidden="true"></i> |
| </a> |
| {{ end -}} |
| {{ block "main" . }}{{ end }} |
| </main> |
| </div> |
| </div> |
| {{ partial "footer.html" . }} |
| </div> |
| {{ partial "scripts.html" . }} |
| </body> |
| </html> |