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

header.html « partials « layouts - github.com/uicardiodev/hugo-lime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3f1bb5a5e5accbbd50ad6985371fff1dc6550d9 (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
<!DOCTYPE html>
<html lang="en-US">
  <head>
    <title>
 			{{ .Title }} {{ if ne .Title .Site.Title }} &middot; {{ .Site.Title }}{{ end }}
    </title>
    <meta charset="utf-8">
    <link rel="canonical" href="{{ .Permalink }}">
    <meta name="robots" content="index,follow" />
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="https://fonts.googleapis.com/css?family=Gothic+A1:700" rel="stylesheet">
    <link href="{{ "favicon.png" | absURL }}" rel="icon" />

    <!-- og -->
    <meta name="og:title" content="{{ .Title }}"/>
	<meta name="og:url" content="{{ .Permalink }}"/>
	{{ if .Params.featuredimage }}
	<meta name="og:image" content="{{ .Params.featuredimage | absURL}}"/>
	{{ end }}
	{{ if .Params.description }}
	<meta name="og:description" content="{{ .Params.description }}"/>
	{{ end }}
	<meta name="og:site_name" content="{{ .Site.Title }}"/>
		

    <!-- including bootstrap -->
    <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="{{.Site.BaseURL}}css/compiled.css">
<!--
    
    Made the below line commented because hugo can't compile and generate SCSS files
    on thier server, You can uncomment these linkes and use it on your local server
    with latest hugo.

    {{ $sass := resources.Get "/scss/bootstrap.scss" }}
    {{ $style := $sass | resources.ToCSS | resources.Minify}} 
    <link rel="stylesheet" href="{{ $style.Permalink }}"> -->
  </head>
  <body>