|
2 | 2 | <html lang="{{ .Site.LanguageCode | default "en-us" }}">
|
3 | 3 | <head>
|
4 | 4 | <meta http-equiv="refresh" content="0; url=https://github.com/bitnami-labs/sealed-secrets/" />
|
5 |
| - <meta charset="UTF-8"> |
6 |
| - <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 |
| - <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
8 |
| - <title>{{ if .Title }}{{ .Title }}{{ else }}Documentation{{ end }}</title> |
9 |
| - {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }} |
10 |
| - {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }} |
11 |
| - {{ $options := (dict "targetPath" "css/style.css" "outputStyle" "compressed" "enableSourceMap" true "includePaths" (slice "node_modules/myscss")) }} |
12 |
| - {{ $style := resources.Get "scss/site.scss" | resources.ToCSS $options }} |
13 |
| - <link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" media="screen"> |
14 |
| - <link rel="icon" type="image/png" href="/img/favicon.png"> |
15 |
| - <script src="{{ "js/main.js" | relURL }}" type="text/javascript"></script> |
16 |
| - {{ with .OutputFormats.Get "RSS" -}} |
17 |
| - {{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }} |
18 |
| - {{- end }} |
19 | 5 | </head>
|
20 | 6 | <body>
|
21 |
| - {{ partial "header" . }} |
22 |
| - {{ block "main" . }}{{ end }} |
23 |
| - {{ partial "getting-started" . }} |
24 |
| - {{ partial "footer" . }} |
25 |
| - {{ if .Site.Params.docs_search }} |
26 |
| - <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script> |
27 |
| - <script type="text/javascript"> docsearch({ |
28 |
| - apiKey: '{{ .Site.Params.Docs_search_api_key }}', |
29 |
| - indexName: '{{ .Site.Params.Docs_search_index_name }}', |
30 |
| - inputSelector: '.docsearch-input', |
31 |
| - algoliaOptions: {'facetFilters': ["version:{{ .CurrentSection.Params.version }}"]}, |
32 |
| - debug: false // Set debug to true if you want to inspect the dropdown |
33 |
| - }); |
34 |
| - </script> |
35 |
| - {{ end }} |
36 | 7 | </body>
|
37 | 8 | </html>
|
0 commit comments