From f3d5b2d7257d5321cba92fd69195ed457c35c186 Mon Sep 17 00:00:00 2001 From: jacobkoenig Date: Tue, 4 Feb 2020 16:56:26 +0000 Subject: added google scholar icon to social --- layouts/partials/sidebar/social.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/layouts/partials/sidebar/social.html b/layouts/partials/sidebar/social.html index ba6567c..30c0111 100644 --- a/layouts/partials/sidebar/social.html +++ b/layouts/partials/sidebar/social.html @@ -24,6 +24,9 @@ {{ with .Site.Params.social.linkedin }} {{ end }} + {{ with .Site.Params.social.googlescholar}} + + {{ end }} {{ with .Site.Params.social.stackoverflow }} {{ end }} -- cgit v1.2.3 From ac7af403e407cebcc46a46dcaca07c38c5681bdf Mon Sep 17 00:00:00 2001 From: Evgeny Kuznetsov Date: Tue, 17 Mar 2020 07:37:28 +0300 Subject: add micro.blog social option --- exampleSite/config.toml | 1 + layouts/partials/footer/font-awesome-js.html | 2 +- layouts/partials/sidebar/social.html | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 7850c4e..bb4d64c 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -50,6 +50,7 @@ theme = "hyde-hyde" linkedin = "" twitter = "" facebook = "" + microblog = "" stackoverflow = "" telegram = "" # orcid = "" diff --git a/layouts/partials/footer/font-awesome-js.html b/layouts/partials/footer/font-awesome-js.html index c215d65..a92a75a 100644 --- a/layouts/partials/footer/font-awesome-js.html +++ b/layouts/partials/footer/font-awesome-js.html @@ -1 +1 @@ - + diff --git a/layouts/partials/sidebar/social.html b/layouts/partials/sidebar/social.html index a1ac5d5..337934f 100644 --- a/layouts/partials/sidebar/social.html +++ b/layouts/partials/sidebar/social.html @@ -2,6 +2,9 @@ {{ with .Site.Params.social.twitter }} {{ end }} + {{ with .Site.Params.social.microblog }} + + {{ end }} {{ with .Site.Params.social.facebook }} {{ end }} -- cgit v1.2.3 From 2ed75c9f45e943e62f72a0043ecf7292abf2795f Mon Sep 17 00:00:00 2001 From: Evgeny Kuznetsov Date: Sat, 4 Apr 2020 09:42:24 +0300 Subject: remove Cache-Control meta header Per standard, "Cache-Control" is not a valid http-equiv keyword. https://html.spec.whatwg.org/multipage/semantics.html#pragma-directives --- layouts/partials/header/meta.html | 1 - 1 file changed, 1 deletion(-) diff --git a/layouts/partials/header/meta.html b/layouts/partials/header/meta.html index 5adbbe8..e0ce340 100644 --- a/layouts/partials/header/meta.html +++ b/layouts/partials/header/meta.html @@ -1,6 +1,5 @@ - {{ "" | safeHTML }} {{ hugo.Generator }} -- cgit v1.2.3 From fe9392530423bcb955d65ecefc0bf3287d09c7f1 Mon Sep 17 00:00:00 2001 From: MarcoIeni Date: Fri, 5 Jun 2020 23:44:08 +0200 Subject: add rss to social icons --- layouts/partials/sidebar/social.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/layouts/partials/sidebar/social.html b/layouts/partials/sidebar/social.html index a1ac5d5..e27945c 100644 --- a/layouts/partials/sidebar/social.html +++ b/layouts/partials/sidebar/social.html @@ -48,4 +48,7 @@ {{ with .Site.Params.social.email }} {{ end }} + {{ with .Site.Params.social.rss }} + + {{ end }} -- cgit v1.2.3 From 3f7524a43f6ad119eb0cc8b7c525e5231cefe397 Mon Sep 17 00:00:00 2001 From: Huy Tran Date: Tue, 3 Nov 2020 11:19:55 +1100 Subject: Update README with seeking for maintainers --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5cc8091..348e551 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ __`Hyde-hyde`__ is a [Hugo](https://gohugo.io)'s theme inspired and derived from @spf13's [Hyde](https://github.com/spf13/hyde.git) and [Nate Finch's blog](https://npf.io). +> NOTICE: Maintainers / collaborators seeking: As I'm underwater with my full time job at the moment, I'm actively looking for and welcome any new maintainers or collaborators. If you are interested, comment on [#130](https://github.com/htr3n/hyde-hyde/issues/130) and I can add you to the project. TIA. + ## Breaking Changes Since version 2.0, __`hyde-hyde`__ has been overhauled and, therefore, might cause some disruptions. -- cgit v1.2.3