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

baseof.html « _default « layouts - github.com/yanlinlin82/simple-style.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ce8ead0763c1ba3865cd9360436d682da97e8bb (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <base href="{{ .Site.BaseURL }}">
  {{- partial "html-meta.html" . }}
  <title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
  {{- with .Site.Params.favicon }}<link rel="shortcut icon" href="{{ . }}" type="image/x-icon">{{ end }}
  <link rel="stylesheet" type="text/css" href="{{ "/css/main.css" | relURL }}">
  {{- partial "google-tag-manager-head.html" . }}
</head>
<body>
  {{ partial "header.html" . -}}
  <main>
    {{ block "main" . }}{{- end }}
  </main>
  {{- partial "footer.html" . }}
  {{- template "_internal/google_analytics.html" . }}
  {{- partial "github-corner.html" . }}
  {{- partial "external-links.html" . }}
</body>
{{- partial "google-tag-manager-body.html" . }}
</html>