19 lines
1.1 KiB
HTML
19 lines
1.1 KiB
HTML
<head>
|
|
<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">
|
|
<link rel="shortcut icon" type="image/png" href="{{ .Site.BaseURL }}/img/favicon.png">
|
|
<title>{{ default .Params.Title .Site.Params.Title }}</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<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 }}">
|
|
<meta property="og:type" content="website">
|
|
{{ if .Params.Thumbnail }}
|
|
<meta property="og:image" content="{{ .Params.Thumbnail }}">
|
|
{{ else }}
|
|
<meta property="og:image" content="/img/bg.png">
|
|
{{ end }}
|
|
</head>
|