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

github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Bocheński <bochenski.piotr@gmail.com>2021-06-11 21:27:03 +0300
committerPiotr Bocheński <bochenski.piotr@gmail.com>2021-06-27 15:13:53 +0300
commit3a0c5292469e705284f553ea8259bcdedfca5397 (patch)
tree4493675c5969f6fde9d2673ca343246d4793464a
parentcc9295137f9325b3e226b1d5c11c3f19635ca80c (diff)
Upgrade font-awesome to 5.15.3 & use non-hostile CDN
Official FA hosting now wants an email address... Signed-off-by: Piotr Bocheński <bochenski.piotr@gmail.com>
-rw-r--r--layouts/partials/head.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index a1a4e90..01018b5 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -3,11 +3,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Site.Title }}</title>
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald">
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
- <link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald" />
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" />
+ <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
- {{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "style.main.scss" . | toCSS | minify | fingerprint }}
+ {{- $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "style.main.scss" . | toCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}" crossorigin="anonymous" media="screen" />
-</head> \ No newline at end of file
+</head>