diff --git a/_data/SocialNetworks.yml b/_data/SocialNetworks.yml index 05ee8cc..0ba9ac7 100644 --- a/_data/SocialNetworks.yml +++ b/_data/SocialNetworks.yml @@ -1,37 +1,37 @@ # You can define your custom social network links here. # Use the same key you added in _config.yml -> soicial-network-links. # In addition to that you need to specify the following properties: # name: Specify a user-friendly name that will be used as a link title # baseURL: Define a base URL which will be combined with the value of # site.social-network-links. # icon: Specify a valid fontawesome icon class facebook: name: "Facebook" baseURL: "https://www.facebook.com/" - icon: "fa-facebook" + iconClasses: "fab fa-facebook" github: name: "GitHub" baseURL: "https://github.com/" - icon: "fa-github" + iconClasses: "fab fa-github" twitter: name: "Twitter" baseURL: "https://twitter.com/" - icon: "fa-twitter" + iconClasses: "fab fa-twitter" email: name: "Email me" baseURL: "mailto:" - icon: "fa-envelope" + iconClasses: "fas fa-envelope" linkedin: name: "LinkedIn" baseURL: "https://linkedin.com/" - icon: "fa-linkedin" + iconClasses: "fab fa-linkedin" youtube: name: "YouTube" baseURL: "https://www.youtube.com/" - icon: "fa-youtube" + iconClasses: "fab fa-youtube" diff --git a/_includes/footer.html b/_includes/footer.html index faa983c..d228d97 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,37 +1,37 @@ diff --git a/_includes/social-share.html b/_includes/social-share.html index 53d75d0..40f9d16 100644 --- a/_includes/social-share.html +++ b/_includes/social-share.html @@ -1,51 +1,51 @@ {% assign any-share-links = false %} {% for links in site.share-links-active %} {% if links[1] == true %} {% assign any-share-links = true %} {% endif %} {% endfor %} {% if any-share-links %}
Share: {% if site.share-links-active.twitter %} - + Twitter {% endif %} {% if site.share-links-active.facebook %} - + Facebook {% endif %} {% if site.share-links-active.google %} - + Google+ {% endif %} {% if site.share-links-active.linkedin %} - + LinkedIn {% endif %}
{% endif %} diff --git a/_layouts/abc_md.html b/_layouts/abc_md.html index 6b75457..5cb4c19 100644 --- a/_layouts/abc_md.html +++ b/_layouts/abc_md.html @@ -1,16 +1,16 @@ --- layout: base ---
{% include header.html type="page" %} {{ content }}
diff --git a/_layouts/base.html b/_layouts/base.html index ca33136..3e94617 100644 --- a/_layouts/base.html +++ b/_layouts/base.html @@ -1,30 +1,30 @@ --- common-css: - "/css/bootstrap.min.css" - "/css/bootstrap-social.css" - "/css/main.css" common-ext-css: - - "//maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css" + - "//use.fontawesome.com/releases/v5.14.0/css/all.css" common-googlefonts: - "Lora:400,700,400italic,700italic" - "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" common-js: - "/js/jquery-1.11.2.min.js" - "/js/bootstrap.min.js" - "/js/main.js" - "/js/blog-feed.js" --- {% include head.html %} {% include gtm_body.html %} {% include nav.html %}
{{ content }}
{% include footer.html %} {% include footer-scripts.html %} diff --git a/_layouts/doc.html b/_layouts/doc.html index bb5bbce..060237e 100644 --- a/_layouts/doc.html +++ b/_layouts/doc.html @@ -1,45 +1,45 @@ --- layout: base --- {% assign groups = site.doc | where:"version", page.version | where:"category", page.category | group_by:"group" | sort:"name" %}
{% include header.html type="page" %} {% if page.category == "man" %} {{ content }} {% else %} {% highlight text %}{{ content }}{% endhighlight %} {% endif %}