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

head.html « partials « layouts - github.com/guangmean/Niello.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90c3528b6fecd545b1befd7b163dc8b6e5027db3 (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
<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1">
    {{ partial "title.html" . }}
    {{ if eq .IsHome true }}
    <meta name="keywords" content="{{- .Site.Params.keywords -}}">
    <meta name="description" content="{{- .Site.Params.description -}}">
    {{ else }}
    <meta name="keywords" content="{{ with .Keywords }} {{- delimit . ", " -}} {{ end }}">
    <meta name="description" content="{{ with .Description }} {{- . -}} {{ end }}">
    {{ end }}
    <link rel="stylesheet" href="{{.Site.BaseURL | relLangURL}}css/highlight.min.css">
    <link rel="stylesheet" href="{{.Site.BaseURL | relLangURL}}css/normalize.css">
    <link rel="stylesheet" href="{{.Site.BaseURL | relLangURL}}css/diello.css">
    <link rel="stylesheet" href="{{.Site.BaseURL | relLangURL}}css/main.css">
    {{ if .Site.Params.google_ad_client }}
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <script>
        (adsbygoogle = window.adsbygoogle || []).push({
            google_ad_client: "{{ .Site.Params.google_ad_client }}",
            enable_page_level_ads: true
        });
    </script>
    {{ end }}
    {{ if .Site.Params.sharethis }}
    <script async src="{{.Site.BaseURL | relLangURL}}js/vendor/sharethis.js#property={{- .Site.Params.sharethis -}}&product=sticky-share-buttons"></script>
    {{ end }}
</head>