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

head.html « partials « layouts - github.com/pravin/hugo-theme-prav.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3fb2da67b8c605946c231b62d2f2183910f89df (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
<head>
    <meta charset="utf-8">
    <meta name="theme-color" content="#000" />
    <title>
        {{ if .IsHome }}
            {{ if .Site.Title }} 
                {{ .Site.Title }} 
            {{ else }}
                {{ .Site.Params.Title }} 
            {{ end }} 
            &middot; {{ .Site.Params.Tagline }}
        {{ else }}
            {{ .Title }} &middot; {{ .Site.Title }} {{ .Site.Params.Title }}
        {{ end }}
    </title>

    <!-- Stylesheets -->
    <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css"
        integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
    <!--[if lte IE 8]>
    <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-old-ie-min.css">
    <![endif]-->
    <!--[if gt IE 8]><!-->
    <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-min.css">
    <!--<![endif]-->
    <link rel="stylesheet" href="/css/style.css">
    <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Merriweather:300,300italic,700&display=swap" type="text/css">
    <link href="//fonts.googleapis.com/css?family=Fira+Sans+Condensed:300&display=swap" rel="stylesheet">
    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">

    <link rel="alternate" type="application/atom+xml" title="Atom Feed" href="/atom.xml" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="generator" content="{{ hugo.Generator }}">
    
    <meta name="description" content="{{ .Description }}">
    {{ if .Params.tags }}
    <meta name="keywords" content="{{ delimit .Params.tags "," }}">
    {{ end }}
    <meta name="author" content="{{ .Site.Params.Author }}">
</head>