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

head.html « partials « layouts - github.com/d-kusk/minimage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a37dc35377b1380991f949bf8bcc48057671c7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}jp{{ end }}">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1">
  <title>{{ .Title }}{{ if not .IsHome }} &middot; {{ .Site.Title }}{{ end }} - {{ with .Site.Params.description }}{{ . }}{{ end }}</title>
  {{ hugo.Generator }}
  {{ with .Site.Params.description }}
  <meta name="description" content="{{ . }}"> {{ end }}
  {{ template "_internal/twitter_cards.html" . }}
  {{ template "_internal/opengraph.html" . }}

  {{ template "_internal/google_analytics.html" . }}
  {{ template "_internal/schema.html" . }}
  <link href="https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/13.0.0/sanitize.min.css" rel="stylesheet">
  <link href="{{ "css/application.css" | absURL }}" rel="stylesheet">

  <script src="{{ "js/application.js" | absURL }}" defer></script>
</head>