gabrielgio.me @ 6166cf8e4008b7d64053655f4093d0870a54ace1

 1<!DOCTYPE html>
 2<html lang="{{ .Site.LanguageCode | default "en-us" }}">
 3    <head>
 4        <meta charset="UTF-8">
 5        <meta name="viewport" content="width=device-width, initial-scale=1">
 6        <meta http-equiv="X-UA-Compatible" content="IE=edge">
 7
 8        {{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
 9
10        <title itemprop="name">{{ .Title }} | {{ .Site.Params.description }}</title>
11        {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
12        {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
13
14        {{ $styles := resources.Get "scss/main.scss" | resources.ToCSS | minify | fingerprint}}
15        <link rel="stylesheet" href="{{ $styles.RelPermalink }}" media="screen">
16        <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
17
18
19        {{ partial "meta" . }}
20    </head>
21    <body>
22        <div class="layout">
23            {{ partial "header" . }}
24            {{ block "main" . }}{{ end }}
25            {{ partial "footer" . }}
26        </div>
27    </body>
28</html>