diff --git a/CHANGELOG.md b/CHANGELOG.md index b83c2c5..c95f2e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,18 @@ __2018-07__ +* Renames `header/font-awesome.html` to `header/font-awesome-css.html` and + + adds [_footer/font-awesome-js.html_](layouts/partials/footer/font-awesome-js.html), uses Font-Awesome 5 deferred JavaScript loading to reduce rendering blocking by CSSs + * Refactors and consolidates all responsive breakpoints and creates a new style [_\_responsive.scss_](static-src/scss/hyde-hyde/_responsive.scss) + * Refactors portfolio's projects into [_\_project.scss_](static-src/scss/hyde-hyde/_project.scss) + * Refactors styles for a list of posts into [_\_list.scss_](static-src/scss/hyde-hyde/_list.scss) + * Refactors misc. styles into [_\_misc.scss_](static-src/scss/hyde-hyde/_misc.scss) + * Removes [_\_customised.scss_](static-src/scss/hyde-hyde/_customised.scss) __Version 2.0__ diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index c462a3e..c9a9c04 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,4 +1,5 @@ -{{ if and (not .Site.BuildDrafts) (.Site.GoogleAnalytics) -}} -{{ "" | safeHTML }} -{{ template "_internal/google_analytics_async.html" . }} -{{- end }} \ No newline at end of file +{{ partial "footer/font-awesome-js.html" . }} +{{ if (.Site.GoogleAnalytics) -}} + {{ "" | safeHTML }} + {{ template "_internal/google_analytics_async.html" . }} +{{- end }} diff --git a/layouts/partials/footer/font-awesome-js.html b/layouts/partials/footer/font-awesome-js.html new file mode 100644 index 0000000..0d0c9d0 --- /dev/null +++ b/layouts/partials/footer/font-awesome-js.html @@ -0,0 +1 @@ + diff --git a/layouts/partials/header.html b/layouts/partials/header.html index b2de7c9..bbcb531 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,8 +1,6 @@
{{ partial "header/meta.html" . }} - {{ "" | safeHTML }} - {{ partial "header/font-awesome.html" . }} {{ "" | safeHTML }} {{ partial "header/highlight-css.html" . }} diff --git a/layouts/partials/header/font-awesome.html b/layouts/partials/header/font-awesome-css.html similarity index 100% rename from layouts/partials/header/font-awesome.html rename to layouts/partials/header/font-awesome-css.html