28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!-- Basic stuff -->
|
|
<meta charset="utf-8">
|
|
<meta name="HandheldFriendly" content="True">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="referrer" content="no-referrer-when-downgrade">
|
|
|
|
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
|
<meta name="description" content="{{ .Site.Params.Description }}">
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ "/rss/" }}">
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="apple-touch-icon-precomposed" href="/favicon.png">
|
|
|
|
<link rel="stylesheet" href="{{ "/css/style.css" | relURL }}?rnd={{ now.Unix }}" />
|
|
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
<!-- Article tags -->
|
|
<!-- <meta property="article:published_time" content="">
|
|
<meta property="article:modified_time" content="">
|
|
<meta property="article:tag" content="">
|
|
<meta property="article:publisher" content="https://www.facebook.com/XXX"> -->
|
|
|
|
{{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
|
{{ end }} |