2023-09-20 03:20:03 +00:00
|
|
|
<head>
|
2023-10-09 03:41:59 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2023-09-20 06:19:38 +00:00
|
|
|
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
|
|
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
2023-09-22 03:41:59 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="{{ .Site.BaseURL }}/img/favicon.png">
|
2023-10-07 21:58:50 +00:00
|
|
|
|
|
|
|
{{- /* HTML meta tags */ -}}
|
2023-10-07 23:34:06 +00:00
|
|
|
<title>{{ default .Params.Title .Site.Title }}</title>
|
2023-10-07 21:58:50 +00:00
|
|
|
<meta name="description" content="{{ default .Site.Params.Description .Params.Description }}">
|
|
|
|
|
|
|
|
{{- /* Facebook meta tags */ -}}
|
2023-10-01 23:02:02 +00:00
|
|
|
<meta property="og:title" content="{{ default .Site.Title .Params.Title }}">
|
|
|
|
<meta property="og:description" content="{{ default .Site.Params.Description .Params.Description }}">
|
|
|
|
<meta property="og:site_name" content="{{ .Site.Params.Name }}">
|
|
|
|
<meta property="og:url" content="{{ .Permalink }}">
|
2023-09-20 06:19:38 +00:00
|
|
|
<meta property="og:type" content="website">
|
2023-10-02 04:45:41 +00:00
|
|
|
{{ if .Params.Thumbnail }}
|
2023-10-07 23:16:58 +00:00
|
|
|
<meta property="og:image" content="{{ .Site.BaseURL }}{{ .Params.Thumbnail }}">
|
2023-10-02 04:45:41 +00:00
|
|
|
{{ else }}
|
2023-10-07 22:59:45 +00:00
|
|
|
{{- /* Hard coding this because baseURL is super delicate */ -}}
|
2023-10-07 23:34:06 +00:00
|
|
|
<meta property="og:image" content="{{ .Site.BaseURL }}/img/bg.png">
|
2023-10-02 04:45:41 +00:00
|
|
|
{{ end }}
|
2023-10-07 21:58:50 +00:00
|
|
|
|
|
|
|
{{- /* Twitter meta tags */ -}}
|
|
|
|
<meta name="twitter:title" content="{{ default .Site.Title .Params.Title }}">
|
|
|
|
<meta name="twitter:description" content="{{ default .Site.Params.Description .Params.Description }}">
|
|
|
|
<meta property="twitter:url" content="{{ .Permalink }}">
|
|
|
|
{{ if .Params.Thumbnail }}
|
2023-10-07 22:59:45 +00:00
|
|
|
{{- /* Hard coding this because baseURL is super delicate */ -}}
|
2023-10-07 23:16:58 +00:00
|
|
|
<meta property="twitter:image" content="{{ .Site.BaseURL }}{{ .Params.Thumbnail }}">
|
2023-10-07 21:58:50 +00:00
|
|
|
{{ else }}
|
2023-10-31 03:18:17 +00:00
|
|
|
<meta property="twitter:image" content="https://temper.tv/img/bg_twitter.png">
|
2023-10-07 21:58:50 +00:00
|
|
|
{{ end }}
|
|
|
|
{{- /* Requirements special to twitter, just don't touch these tbh */ -}}
|
|
|
|
{{- /* https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/summary-card-with-large-image */ -}}
|
|
|
|
<meta property="twitter:domain" content="temper.tv">
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
2023-09-20 03:20:03 +00:00
|
|
|
</head>
|