diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2022-03-23 22:25:05 +0100 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2022-03-23 22:50:07 +0100 |
commit | 9176f98eb7fa33bee31efcf3aab619e39d0a05d4 (patch) | |
tree | bcb29c0884faa6da4745b961ceb628c323d48597 /themes | |
parent | 7a3c99965f5e1493ad0f1c1d36e68f425ee7dd72 (diff) | |
download | gabrielgio.me-9176f98eb7fa33bee31efcf3aab619e39d0a05d4.tar.gz gabrielgio.me-9176f98eb7fa33bee31efcf3aab619e39d0a05d4.tar.bz2 gabrielgio.me-9176f98eb7fa33bee31efcf3aab619e39d0a05d4.zip |
ref: Move fa to static file
Move to 5.x and all files are now local in the static folder.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/flamingo/layouts/_default/baseof.html | 6 | ||||
-rw-r--r-- | themes/flamingo/layouts/partials/header.html | 2 | ||||
-rw-r--r-- | themes/flamingo/layouts/partials/post-description.html | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/themes/flamingo/layouts/_default/baseof.html b/themes/flamingo/layouts/_default/baseof.html index 7a1a139..ccec626 100644 --- a/themes/flamingo/layouts/_default/baseof.html +++ b/themes/flamingo/layouts/_default/baseof.html @@ -5,6 +5,9 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> + + <link rel="stylesheet" type="text/css" href="css/all.css" /> + {{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }} <title itemprop="name">{{ .Title }} | {{ .Site.Params.description }}</title> @@ -13,9 +16,6 @@ {{ $styles := resources.Get "scss/main.scss" | resources.ToCSS | minify | fingerprint}} <link rel="stylesheet" href="{{ $styles.RelPermalink }}" media="screen"> - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" crossorigin="anonymous"> - - {{ partial "meta" . }} </head> <body> diff --git a/themes/flamingo/layouts/partials/header.html b/themes/flamingo/layouts/partials/header.html index 11929c4..a060f18 100644 --- a/themes/flamingo/layouts/partials/header.html +++ b/themes/flamingo/layouts/partials/header.html @@ -12,7 +12,7 @@ <li><a href="https://gitlab.com/gabrielgio/cv/-/raw/main/cv.pdf?inline=false" target="_blank"> - resume<i style="font-size:x-small" class="fab fa-external-link" aria-hidden="true"> </i> + resume<i style="font-size: x-small" class="fas fa-external-link-alt"></i> </a> </li> </nav> diff --git a/themes/flamingo/layouts/partials/post-description.html b/themes/flamingo/layouts/partials/post-description.html index d542877..ae79de6 100644 --- a/themes/flamingo/layouts/partials/post-description.html +++ b/themes/flamingo/layouts/partials/post-description.html @@ -21,7 +21,7 @@ class="brand-icon" target="_blank" href="https://www.linkedin.com/in/gabriel-giovanini/"> - <i class="fab fa-linkedin"></i> + <i class="fab fa-linkedin-in"></i> </a> . </p> |