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

head.html « partials « layouts - github.com/themefisher/timer-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbb5bcc9e06768b45260f302d62eb04f50a9d8fc (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
<head>
  {{ "<!-- Basic Page Needs -->" | safeHTML }}
  <meta charset="utf-8">
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  
  <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
  {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
  {{ hugo.Generator }}
  
  {{ "<!-- Mobile Specific Metas -->" | safeHTML }}
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>{{ .Title }}</title>
  <link rel="icon" href="{{ `images/favicon.ico` | absURL }}">

  {{ "<!-- Twitter Bootstrs CSS -->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/bootstrap/bootstrap.min.css` | absURL }}">
  {{ "<!-- Ionicons Fonts Css -->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/ionicons/ionicons.min.css` | absURL }}">
  {{ "<!-- animate css -->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/animate-css/animate.css` | absURL }}">
  {{ "<!-- Hero area slider css-->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/slider/slider.css` | absURL }}">
  {{ "<!-- slick slider -->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/slick/slick.css` | absURL }}">
  {{ "<!-- Fancybox -->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/facncybox/jquery.fancybox.css` | absURL }}">
  {{ "<!-- hover -->" | safeHTML }}
  <link rel="stylesheet" href="{{ `plugins/hover/hover-min.css` | absURL }}">
  {{ "<!-- template main css file -->" | safeHTML }}
  {{ $styles := resources.Get "css/style.css" | minify}}
  <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
  
	{{"<!-- Custom stylesheet - for your changes -->" |safeHTML}}
	{{ $custom := resources.Get "css/custom.css" | minify }}
  <link rel="stylesheet" href="{{ $custom.Permalink }}" media="screen">
  
</head>