mirror of
https://git.adityakumar.xyz/hugo-devresume-theme.git
synced 2024-11-09 23:09:46 +00:00
17 lines
799 B
HTML
17 lines
799 B
HTML
|
|
<title>{{ .Site.Title }}</title>
|
|
|
|
<!-- Meta -->
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="{{ .Site.Params.description }}">
|
|
<meta name="author" content="{{ .Site.Params.author }}">
|
|
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
|
|
<!-- Google Fonts -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900">
|
|
<!-- Theme SCSS -->
|
|
{{ $style := resources.Get "scss/devresume.scss" | resources.ExecuteAsTemplate "scss/devresume.scss" . | toCSS (dict "targetPath" "assets/css/devresume.css") | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|