123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!doctype html>
- <html lang="{{ .Lang }}">
- <head>
- {{ partial "head" . }}
- <link rel="canonical" href="{{ .Permalink }}">
- <title>
- {{ block "title" . }}
- {{ .Title}}{{ if ne .Title .Site.Title }} | {{ .Site.Title }}{{ end }}
- {{ end }}
- </title>
- <!-- Bootstrap CSS -->
- <link
- rel="stylesheet"
- href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"
- integrity="sha512-GQGU0fMMi238uA+a/bdWJfpUGKUkBdgfFdgBm72SUQ6BeyWjoY/ton0tEjH+OSH9iP4Dfh+7HM0I9f5eR0L/4w=="
- crossorigin="anonymous"
- referrerpolicy="no-referrer"
- />
-
- <link href='{{ "css/style.css" | relURL }}' rel="stylesheet">
- {{ range .AlternativeOutputFormats -}}
- <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
- {{ end -}}
- {{ template "_internal/google_analytics_async.html" . }}
- </head>
- <body>
- {{ block "header" . }}
- {{ partial "header" . }}
- {{ end }}
- {{ block "body" . }}
- <div class="container-fluid my-5 flex-grow-1">
- <div class="row justify-content-evenly">
- <div class="col-12 col-lg-8 blog-main">
- <div class="row g-3 content-list">
- {{ block "main" . }}
- {{ end }}
- </div>
- </div>
- {{ partial "sidebar.html" . }}
- </div>
- </div>
- {{ end }}
- {{ block "footer" . }}
- {{ partial "footer" . }}
- {{ end }}
- <!-- Bootstrap and Popper -->
- <script
- src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/js/bootstrap.bundle.min.js"
- integrity="sha512-pax4MlgXjHEPfCwcJLQhigY7+N8rt6bVvWLFyUMuxShv170X53TRzGPmPkZmGBhk+jikR8WBM4yl7A9WMHHqvg=="
- crossorigin="anonymous"
- referrerpolicy="no-referrer"
- ></script>
- </body>
- </html>
|