Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tylerjlawson/simple-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..a18b3eb
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,14 @@
+<head>
+ <title>{{ .Site.Title }}</title>
+ <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap" rel="stylesheet">
+
+ {{ $style := resources.Get "main.scss" | toCSS }}
+ <link rel="stylesheet" href="{{ $style.RelPermalink }}" />
+
+ <link
+ rel="stylesheet"
+ href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
+ integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt"
+ crossorigin="anonymous"
+ />
+</head>