blob: 5471e2164d013f4a2618901d5d2185685c0e639d (
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 name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content={{ .Site.Author.name }}>
<meta name="robots" content="index,follow">
<meta name="description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}">
<!--
<meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} - {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}">
<meta property="og:image" content="{{ .Site.Params.ogImage }}">
-->
<meta property="og:type" content="website">
<meta property="og:site_name" content="{{ .Site.Title }}">
<meta property="og:description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}">
<meta property="og:url" content="{{ .Permalink }}">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
<link rel="stylesheet" type="text/css" href="/css/syntax.css">
<title>{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} | {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}</title>
</head>
|