From ace09b4e68dba4c3d15e53363db4158770c07e98 Mon Sep 17 00:00:00 2001 From: Aniol Martí Date: Mon, 3 Oct 2022 17:11:18 +0200 Subject: Load Academicicons v1 Font Awesome does not include some academic icons, for instance Scholar. In a Researcher theme having them is quite useful, so I propose adding support for Academicicons. --- layouts/partials/head.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index df307bb..b4c5357 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -9,6 +9,7 @@ + {{ $style := resources.Get "sass/researcher.scss" | resources.ExecuteAsTemplate "sass/researcher.scss" . | toCSS | minify }} -- cgit v1.2.3 From 12617ed68485b5c5f248a7b1fd2549b4cc31aa11 Mon Sep 17 00:00:00 2001 From: Aniol Martí Date: Mon, 3 Oct 2022 17:13:39 +0200 Subject: Add example of Academicicons icon --- exampleSite/config.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 69c23fd..5488fe2 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -29,6 +29,10 @@ googleAnalytics = "" # add your tracking id icon = "fas fa-envelope" title = "E-mail" url = "mailto:mail@example.com" + [[params.socialIcons]] + icon = "ai ai-google-scholar" + title = "Scholar" + url = "https://scholar.google.com/" [permalinks] "/" = "/:filename" -- cgit v1.2.3