Files
Custom-Static-Website-Gener…/sample-hugo-template/Tech-Club-Blog/layouts/partials/head/head.html
2020-05-10 20:47:17 +04:00

16 lines
829 B
HTML

<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="http://hwtech.club/images/output-onlinepngtools.png">
{{ $style := resources.Get "scss/global.scss" | toCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
{{ $prism := resources.Get "css/prism.css" }}
<link rel="stylesheet" href="{{ $prism.RelPermalink }}" />
<link href="https://fonts.googleapis.com/css?family=Merriweather&display=swap" rel="stylesheet">
{{ partial "seo/print.html" . }}
{{ with .Params.forestry_instant_preview_id }}
{{- safeHTML (printf "<meta property='forestry_instant_preview_id' content='%s'>" .) -}}
{{ end -}}
</head>