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

head.html « partials « layouts - github.com/wd/hugo-fabric.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e96e0b9ed73e4787bdf77cbf565da4e1095e25b (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
<!DOCTYPE HTML>
<html>
<head>
	<meta charset="utf-8">
    {{ $.Scratch.Add "title" "" }}
    {{ if eq .Type "archives" }}
    {{ $.Scratch.Set "title" "Archives" }}
    {{ else if ne .Title .Site.Title }}
    {{ $.Scratch.Set "title" .Title }}
    {{ end }}
    <title>{{ if $.Scratch.Get "title" }}{{ $.Scratch.Get "title" }} - {{ end }}{{ .Site.Title }}</title>
    <meta name="author" content="{{ .Site.Params.author }}">
    <meta name="description" content="{{ .Description }}">
    <meta name="keywords" content="{{ range .Keywords }}{{ . }},{{ end }}">
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

    <link href="{{ .RSSLink }}" rel="alternate" title="{{ .Site.Title }}" type="application/atom+xml">
    <link href="{{ .Site.BaseURL }}/images/fav.ico" rel="shortcut icon">
    <style>
    {{ partial "css/screen.css" . | safeCSS }}
    </style>

    <link href="{{ .Site.BaseURL }}/css/custom.css" media="screen, projection" rel="stylesheet" type="text/css">

    <link href='//fonts.googleapis.com/css?family=Slackey' rel='stylesheet' type='text/css'>
    <link href='//fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>
    <link href='//fonts.googleapis.com/css?family=Amethysta' rel='stylesheet' type='text/css'>
	<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![}]-->

    <script type="text/javascript" src="{{ .Site.BaseURL }}/js/jquery-tapir.js"></script>

    {{ template "_internal/google_analytics_async.html" . }}

    <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/hljs.css">
    <script src="{{ .Site.BaseURL }}/js/hljs.js"></script>
    <script>hljs.initHighlightingOnLoad();</script>
</head>