aboutsummaryrefslogtreecommitdiffstats
path: root/themes/ymherklotz/layouts/partials/head.html
blob: 85ef53dffeec71ee23fe7a4d3441232abbceab1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<head>
  <meta charset="utf-8">
  <meta http-equiv="x-ua-compatible" content="ie=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
  <title>{{ if not .IsHome }}{{ with .Title }}{{ . }} | {{ end }}{{ end }}{{ .Site.Title }}</title>
  <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with .Summary }}{{ . }}{{ else }}{{ .Site.Params.description }}{{end }}{{ end }} ">
  {{ template "_internal/opengraph.html" . }}
  {{ template "_internal/twitter_cards.html" . }}

  <link rel="canonical" href="{{ .Permalink }}" />
  <link rel="icon" href="/favicon.ico" >
  {{ if .Site.Params.katex }}
  <link defer rel="stylesheet" href="{{ .Site.BaseURL }}/katex/katex.min.css">
  <script defer src="{{ .Site.BaseURL }}/katex/katex.min.js"></script>
  {{ end }}
  <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/syntax.css" />
  <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/syntax_dark.css" />
  <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/default.css" />
  {{ if .IsPage }}<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/blog.css" />{{ end }}
</head>