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: f077dc6f7a05eee5b76de426e9c22efc4b26333e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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" . }}
    <meta name="keywords" content="{{ with .Keywords }} {{- delimit . ", " -}} {{ end }}">
    <meta name="description" content="{{ with .Description }} {{- . -}} {{ 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 }}
</head>