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

github.com/appernetic/hugo-nederburg-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew McDermott <matthew@ableblue.com>2018-09-30 21:03:59 +0300
committerMatthew McDermott <matthew@ableblue.com>2018-09-30 21:03:59 +0300
commitd087f1b8bc3d6d2fb23744c4f1a5de6223d5f84f (patch)
tree88d1ba3398afd0bd5777d76819acae7c48122eaf
parent516c7c6c43aa0c37bb7fdcec692a004273717e02 (diff)
Upgraded to Font Awesome 5.3
-rw-r--r--layouts/_default/single.html36
-rw-r--r--layouts/partials/category.html2
-rw-r--r--layouts/partials/footer.html22
-rw-r--r--layouts/partials/head.html3
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/tag.html2
-rw-r--r--layouts/partials/topnavigation.html24
7 files changed, 46 insertions, 45 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index dcd32f2..cedb40e 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -107,7 +107,7 @@
{{ with $writer.facebook }}
<a class="facebook" target="_blank"
href="{{ . }}">
- <i class="fa fa-facebook"
+ <i class="fab fa-facebook-f"
title="facebook icon"></i>
</a>
{{end}}
@@ -115,7 +115,7 @@
{{ with $writer.googleplus }}
<a class="googleplus" target="_blank"
href="{{ . }}">
- <i class="fa fa-google-plus"
+ <i class="fab fa-google-plus-g"
title="googleplus icon"></i>
</a>
{{end}}
@@ -124,14 +124,14 @@
{{ with $writer.twitter }}
<a class="twitter" target="_blank"
href="{{ . }}">
- <i class="fa fa-twitter-square"
+ <i class="fab fa-twitter-square"
title="twitter icon"></i>
</a>
{{end}}
{{ with $writer.linkedin }}
<a class="linkedin" target="_blank"
href="{{ . }}">
-<i class="fa fa-linkedin-square"
+<i class="fab fa-linkedin"
title="linkedin icon"></i>
</a>
{{end}}
@@ -139,7 +139,7 @@ title="linkedin icon"></i>
{{ with $writer.email }}
<a class="email" target="_blank"
href="mailto:{{ . }}">
-<i class="fa fa-envelope"
+<i class="fas fa-envelope"
title="email icon"></i>
</a>
{{end}}
@@ -147,7 +147,7 @@ title="email icon"></i>
{{ with $writer.instagram }}
<a class="instagram" target="_blank"
href="{{ . }}">
-<i class="fa fa-instagram"
+<i class="fab fa-instagram"
title="instagram icon"></i>
</a>
{{end}}
@@ -155,7 +155,7 @@ title="instagram icon"></i>
{{ with $writer.stackoverflow }}
<a class="stackoverflow" target="_blank"
href="{{ . }}">
-<i class="fa fa-stack-overflow"
+<i class="fab fa-stack-overflow"
title="stackoverflow icon"></i>
</a>
{{end}}
@@ -163,7 +163,7 @@ title="stackoverflow icon"></i>
{{ with $writer.github }}
<a class="github" target="_blank"
href="{{ . }}">
-<i class="fa fa-github"
+<i class="fab fa-github"
title="github icon"></i>
</a>
{{end}}
@@ -172,7 +172,7 @@ title="github icon"></i>
{{ with $writer.pinterest }}
<a class="pinterest" target="_blank"
href="{{ . }}">
-<i class="fa fa-pinterest"
+<i class="fab fa-pinterest"
title="pinterest icon"></i>
</a>
{{end}}
@@ -182,7 +182,7 @@ title="pinterest icon"></i>
{{ with .Site.Params.social.facebook }}
<a class="facebook" target="_blank"
href="{{ . }}">
-<i class="fa fa-facebook"
+<i class="fab fa-facebook-f"
title="facebook icon"></i>
</a>
{{end}}
@@ -190,7 +190,7 @@ title="facebook icon"></i>
{{ with .Site.Params.social.googleplus }}
<a class="googleplus" target="_blank"
href="{{ . }}">
-<i class="fa fa-google-plus"
+<i class="fab fa-google-plus-g"
title="googleplus icon"></i>
</a>
{{end}}
@@ -199,14 +199,14 @@ title="googleplus icon"></i>
{{ with .Site.Params.social.twitter }}
<a class="twitter" target="_blank"
href="{{ . }}">
-<i class="fa fa-twitter-square"
+<i class="fab fa-twitter-square"
title="twitter icon"></i>
</a>
{{end}}
{{ with .Site.Params.social.linkedin }}
<a class="linkedin" target="_blank"
href="{{ . }}">
-<i class="fa fa-linkedin-square"
+<i class="fab fa-linkedin"
title="linkedin icon"></i>
</a>
{{end}}
@@ -214,7 +214,7 @@ title="linkedin icon"></i>
{{ with .Site.Params.social.email }}
<a class="email" target="_blank"
href="mailto:{{ . }}">
-<i class="fa fa-envelope"
+<i class="fas fa-envelope"
title="email icon"></i>
</a>
{{end}}
@@ -222,7 +222,7 @@ title="email icon"></i>
{{ with .Site.Params.social.instagram }}
<a class="instagram" target="_blank"
href="{{ . }}">
-<i class="fa fa-instagram"
+<i class="fab fa-instagram"
title="instagram icon"></i>
</a>
{{end}}
@@ -230,7 +230,7 @@ title="instagram icon"></i>
{{ with .Site.Params.social.stackoverflow }}
<a class="stackoverflow" target="_blank"
href="{{ . }}">
-<i class="fa fa-stack-overflow"
+<i class="fab fa-stack-overflow"
title="stackoverflow icon"></i>
</a>
{{end}}
@@ -238,7 +238,7 @@ title="stackoverflow icon"></i>
{{ with .Site.Params.social.github }}
<a class="github" target="_blank"
href="{{ . }}">
-<i class="fa fa-github"
+<i class="fab fa-github"
title="github icon"></i>
</a>
{{end}}
@@ -247,7 +247,7 @@ title="github icon"></i>
{{ with .Site.Params.social.pinterest }}
<a class="pinterest" target="_blank"
href="{{ . }}">
-<i class="fa fa-pinterest"
+<i class="fab fa-pinterest"
title="pinterest icon"></i>
</a>
{{end}}
diff --git a/layouts/partials/category.html b/layouts/partials/category.html
index e392161..865d1f7 100644
--- a/layouts/partials/category.html
+++ b/layouts/partials/category.html
@@ -3,7 +3,7 @@
Category: {{ .Title }}
{{ if .Site.Params.social.rss }}
<a href="{{ .RSSLink }}" data-animate-hover="pulse" class="in-page-rss" target="_blank">
- <i class="fa fa-rss" title="rss"></i>
+ <i class="fas fa-rss" title="rss"></i>
<span class="screen-reader-text">rss</span>
</a>
{{ end }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index a74e427..c562123 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -26,7 +26,7 @@
<li>
<a class="facebook" target="_blank"
href="{{ . }}" >
- <i class="fa fa-facebook" title="facebook"></i>
+ <i class="fab fa-facebook-f" title="facebook"></i>
<span class="screen-reader-text">facebook</span>
</a>
</li>
@@ -36,7 +36,7 @@
<li>
<a class="googleplus" target="_blank"
href="{{ . }}" >
- <i class="fa fa-google-plus" title="googleplus"></i>
+ <i class="fab fa-google-plus-g" title="googleplus"></i>
<span class="screen-reader-text">googleplus</span>
</a>
</li>
@@ -46,7 +46,7 @@
{{ with .Site.Params.social.twitter }}
<li>
<a href="{{ . }}" class="twitter" target="_blank">
- <i class="fa fa-twitter-square" title="twitter"></i>
+ <i class="fab fa-twitter-square" title="twitter"></i>
<span class="screen-reader-text">twitter</span>
</a>
</li>
@@ -54,8 +54,8 @@
{{ with .Site.Params.social.instagram }}
<li>
- <a href="{{ . }}" class="twitter" target="_blank">
- <i class="fa fa-instagram" title="instagram"></i>
+ <a href="{{ . }}" class="instagram" target="_blank">
+ <i class="fab fa-instagram" title="instagram"></i>
<span class="screen-reader-text">instagram</span>
</a>
</li>
@@ -64,7 +64,7 @@
{{ with .Site.Params.social.email }}
<li>
<a href="mailto:{{ . }}" class="email">
- <i class="fa fa-envelope" title="email"></i>
+ <i class="fas fa-envelope" title="email"></i>
<span class="screen-reader-text">email</span>
</a>
</li>
@@ -73,7 +73,7 @@
{{ with .Site.Params.social.linkedin }}
<li>
<a href="{{ . }}" class="linkedin" target="_blank">
- <i class="fa fa-linkedin" title="linkedin"></i>
+ <i class="fab fa-linkedin-in" title="linkedin"></i>
<span class="screen-reader-text">linkedin</span>
</a>
</li>
@@ -82,7 +82,7 @@
{{ with .Site.Params.social.stackoverflow }}
<li>
<a href="{{ . }}" class="stackoverflow" target="_blank">
- <i class="fa fa-stack-overflow" title="stackoverflow"></i>
+ <i class="fab fa-stack-overflow" title="stackoverflow"></i>
<span class="screen-reader-text">stackoverflow</span>
</a>
</li>
@@ -92,7 +92,7 @@
{{ with .Site.Params.social.github }}
<li>
<a href="{{ . }}" class="github" target="_blank">
- <i class="fa fa-github" title="github"></i>
+ <i class="fab fa-github" title="github"></i>
<span class="screen-reader-text">github</span>
</a>
</li>
@@ -102,7 +102,7 @@
{{ with .Site.Params.social.pinterest }}
<li>
<a href="{{ . }}" class="pinterest" target="_blank">
- <i class="fa fa-pinterest" title="pinterest"></i>
+ <i class="fab fa-pinterest" title="pinterest"></i>
<span class="screen-reader-text">pinterest</span>
</a>
</li>
@@ -111,7 +111,7 @@
{{ if .Site.Params.social.rss }}
<li>
<a href="{{ .Site.RSSLink }}" data-animate-hover="pulse" class="rss" target="_blank">
- <i class="fa fa-rss" title="rss"></i>
+ <i class="fas fa-rss" title="rss"></i>
<span class="screen-reader-text">rss</span>
</a>
</li>
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 75a4e1e..b1a0b5d 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -14,7 +14,8 @@
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" id="ct-tracks-google-fonts-css" href="//fonts.googleapis.com/css?family=Raleway%3A400%2C700&amp;subset=latin%2Clatin-ext&amp;ver=4.7.2" type="text/css" media="all">
-<link rel="stylesheet" href="{{ "css/font-awesome.min.css" | absURL }}" type='text/css' media='all'>
+<!-- Upgraded to Font Awesome 5.3 no need for local files using all.css so all icons are available -->
+<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- Theme stylesheet, if possible do not edit this stylesheet -->
<link href="{{ "css/style.css" | absURL }}" rel="stylesheet" id="theme-stylesheet" type='text/css' media='all'>
<!-- Custom stylesheet - for your changes -->
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 324407f..7ce297c 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -5,7 +5,7 @@
{{ end }}</div>
</div>
<button id="toggle-navigation" class="toggle-navigation">
- <i class="fa fa-bars"></i>
+ <i class="fas fa-bars"></i>
</button>
<div id="menu-primary-tracks" class="menu-primary-tracks"></div>
diff --git a/layouts/partials/tag.html b/layouts/partials/tag.html
index 9e849d4..ad61d92 100644
--- a/layouts/partials/tag.html
+++ b/layouts/partials/tag.html
@@ -3,7 +3,7 @@
Tag: {{ .Title }}
{{ if .Site.Params.social.rss }}
<a href="{{ .RSSLink }}" data-animate-hover="pulse" class="in-page-rss" target="_blank">
- <i class="fa fa-rss" title="rss"></i>
+ <i class="fas fa-rss" title="rss"></i>
<span class="screen-reader-text">rss</span>
</a>
{{ end }}
diff --git a/layouts/partials/topnavigation.html b/layouts/partials/topnavigation.html
index 609ca93..a4df615 100644
--- a/layouts/partials/topnavigation.html
+++ b/layouts/partials/topnavigation.html
@@ -1,7 +1,7 @@
<div class='container'>
<div id="menu-secondary" class="menu-container menu-secondary" role="navigation">
- <button id="toggle-secondary-navigation" class="toggle-secondary-navigation"><i class="fa fa-plus"></i></button>
+ <button id="toggle-secondary-navigation" class="toggle-secondary-navigation"><i class="fas fa-plus"></i></button>
<div class="menu">
@@ -25,7 +25,7 @@
{{ with .Site.Params.social.facebook }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="facebook" target="_blank">
- <i class="fa fa-facebook-square" title="facebook"></i>
+ <i class="fab fa-facebook-square" title="facebook"></i>
<span class="screen-reader-text">facebook</span>
</a>
</li>
@@ -34,7 +34,7 @@
{{ with .Site.Params.social.googleplus }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="gplus" target="_blank">
- <i class="fa fa-google-plus" title="googleplus"></i>
+ <i class="fab fa-google-plus-g" title="googleplus"></i>
<span class="screen-reader-text">googleplus</span>
</a>
</li>
@@ -43,7 +43,7 @@
{{ with .Site.Params.social.twitter }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="twitter" target="_blank">
- <i class="fa fa-twitter-square" title="twitter"></i>
+ <i class="fab fa-twitter-square" title="twitter"></i>
<span class="screen-reader-text">twitter</span>
</a>
</li>
@@ -51,8 +51,8 @@
{{ with .Site.Params.social.instagram }}
<li>
- <a href="{{ . }}" data-animate-hover="pulse" class="twitter" target="_blank">
- <i class="fa fa-instagram" title="instagram"></i>
+ <a href="{{ . }}" data-animate-hover="pulse" class="instagram" target="_blank">
+ <i class="fab fa-instagram" title="instagram"></i>
<span class="screen-reader-text">instagram</span>
</a>
</li>
@@ -61,7 +61,7 @@
{{ with .Site.Params.social.email }}
<li>
<a href="mailto:{{ . }}" data-animate-hover="pulse" class="email">
- <i class="fa fa-envelope" title="email"></i>
+ <i class="fas fa-envelope" title="email"></i>
<span class="screen-reader-text">email</span>
</a>
</li>
@@ -70,7 +70,7 @@
{{ with .Site.Params.social.linkedin }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="linkedin" target="_blank">
- <i class="fa fa-linkedin" title="linkedin"></i>
+ <i class="fab fa-linkedin-in" title="linkedin"></i>
<span class="screen-reader-text">linkedin</span>
</a>
</li>
@@ -79,7 +79,7 @@
{{ with .Site.Params.social.stackoverflow }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="stackoverflow" target="_blank">
- <i class="fa fa-stack-overflow" title="stackoverflow"></i>
+ <i class="fab fa-stack-overflow" title="stackoverflow"></i>
<span class="screen-reader-text">stackoverflow</span>
</a>
</li>
@@ -89,7 +89,7 @@
{{ with .Site.Params.social.github }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="github" target="_blank">
- <i class="fa fa-github" title="github"></i>
+ <i class="fab fa-github" title="github"></i>
<span class="screen-reader-text">github</span>
</a>
</li>
@@ -99,7 +99,7 @@
{{ with .Site.Params.social.pinterest }}
<li>
<a href="{{ . }}" data-animate-hover="pulse" class="pinterest" target="_blank">
- <i class="fa fa-pinterest" title="pinterest"></i>
+ <i class="fab fa-pinterest" title="pinterest"></i>
<span class="screen-reader-text">pinterest</span>
</a>
</li>
@@ -108,7 +108,7 @@
{{ if .Site.Params.social.rss }}
<li>
<a href="{{ .Site.RSSLink }}" data-animate-hover="pulse" class="rss" target="_blank">
- <i class="fa fa-rss" title="rss"></i>
+ <i class="fas fa-rss" title="rss"></i>
<span class="screen-reader-text">rss</span>
</a>
</li>