Welcome to mirror list, hosted at ThFree Co, Russian Federation.

baseof.html « _default « layouts - github.com/jeblister/kube.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24981b3e16c3023482bbc276ca43562a3f126113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">

<head>
  {{ .Hugo.Generator }}
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>{{ block "title" . }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>

  {{ with .Description }}
  <meta name="description" content="{{ . }}"> {{ end }}
  <!-- noindex meta -->
  {{ $default_noindex_kinds := slice "section" "taxonomy" "taxonomyTerm" }}
  {{ $noindex_kinds := .Site.Params.noindex_kinds | default $default_noindex_kinds }}
  {{ $is_noindex_true := and (isset .Params "noindex") .Params.noindex }}
  {{ if or (in $noindex_kinds .Kind) ($is_noindex_true) }}
  <meta name="robots" content="noindex">
  {{ end }}

  {{ partial "meta/name-author" . }}
  {{ template "_internal/opengraph.html" . }}
  {{ partial "meta/ogimage" . }}
  <!-- Site verification -->
  {{ if .IsHome }} {{ partial "site-verification" . }} {{ end }}
  <!-- add googleAnalytics in config.toml -->
  {{ template "_internal/google_analytics_async.html" . }}
  {{ if .RSSLink }}
  <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> {{ end }}

  <link rel="canonical" href="{{ .Permalink }}"> {{ if (isset .Params "prev") }}
  <link rel="prev" href="{{ .Params.prev }}"> {{ end }} {{ if (isset .Params "next") }}
  <link rel="next" href="{{ .Params.next }}"> {{ end }}

  {{ partial "favicon" . }}

  <link href="{{ "/css/font.css" | relURL }}" rel="stylesheet" type="text/css">
  <link href="{{ "/css/kube.min.css" | relURL }}" rel="stylesheet" type="text/css">
  <link href="{{ "/css/kube.legenda.css" | relURL }}" rel="stylesheet" type="text/css">
  <link href="{{ "/css/highlight.css" | relURL }}" rel="stylesheet" type="text/css">
  <link href="{{ "/css/main.css" | relURL }}" rel="stylesheet" type="text/css">
  <link href="{{ "/css/kube.demo.css" | relURL }}" rel="stylesheet" type="text/css">
<!-- Your own theme here -->
 <link href="{{ "/css/custom.css" | relURL }}" rel="stylesheet" type="text/css">
<!-- js vendor -->
  <script src="{{ "/js/jquery-2.1.4.min.js" | relURL }}" type="text/javascript">
  </script>

  <script type="text/javascript" src="{{ "/js/tocbot.min.js" | relURL }}"></script>
</head>


<body class="page-kube">
  <header>{{ block "header" . }}{{ end }}</header>
  <main>{{ block "main" . }}{{ end }}</main>
  <footer>{{ block "footer" . }}{{ end }}</footer>


  <script src="{{ "/js/kube.js" | relURL }}" type="text/javascript">
  </script>
  <script src="{{ "/js/kube.legenda.js" | relURL }}" type="text/javascript">
  </script>
  <script src="{{ "/js/main.js" | relURL }}" type="text/javascript">
  </script>
</body>

</html>