From 79bce50e32f131462722240a571378191af91552 Mon Sep 17 00:00:00 2001 From: scottleechua Date: Thu, 11 Jul 2024 10:36:11 +0800 Subject: [PATCH 1/4] Add IETF svg logo from https://commons.wikimedia.org/wiki/File:Internet_Engineering_Task_Force_logo.svg --- _includes/svg/ietf.svg | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 _includes/svg/ietf.svg diff --git a/_includes/svg/ietf.svg b/_includes/svg/ietf.svg new file mode 100644 index 000000000000..62c4bb70659b --- /dev/null +++ b/_includes/svg/ietf.svg @@ -0,0 +1,32 @@ + + + + + IETF-Logo + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 6850700efb84dc576f2b64d7d5ef4efd38cb3fd6 Mon Sep 17 00:00:00 2001 From: scottleechua Date: Thu, 11 Jul 2024 10:36:43 +0800 Subject: [PATCH 2/4] Add entry in config.yml --- _config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/_config.yml b/_config.yml index 57fa591dcbe5..b9fd3cd530cf 100644 --- a/_config.yml +++ b/_config.yml @@ -81,6 +81,7 @@ flickr_id: # your flickr id github_username: # your GitHub user name gitlab_username: # your GitLab user name ieee_id: # your ieeexplore.ieee.org/author/id +ietf_id: # your datatracker.ietf.org/person/username (usually an email address) instagram_id: # your instagram id kaggle_id: # your kaggle id keybase_username: # your keybase user name From 39872a24c62c41898b741ac4357909b0ff5d46a4 Mon Sep 17 00:00:00 2001 From: scottleechua Date: Thu, 11 Jul 2024 10:37:07 +0800 Subject: [PATCH 3/4] Add entry for IETF in social.liquid --- _includes/social.liquid | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_includes/social.liquid b/_includes/social.liquid index 0e4f395c5d98..ef8320137483 100644 --- a/_includes/social.liquid +++ b/_includes/social.liquid @@ -31,6 +31,9 @@ {% if site.ieee_id %} {% endif %} +{% if site.ietf_id %} + {% include svg/ietf.svg %} +{% endif %} {% if site.acm_id %} {% endif %} From 8a5b5ea5c8cc2f02aa9fa9fa4f66b5b272c85f4b Mon Sep 17 00:00:00 2001 From: scottleechua Date: Thu, 11 Jul 2024 10:37:35 +0800 Subject: [PATCH 4/4] Enforce same height on SVG social icons as the font icons --- _sass/_base.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_sass/_base.scss b/_sass/_base.scss index 1cc3372de547..3ea50437168d 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -389,6 +389,10 @@ ul.task-list input[type="checkbox"] { } } + svg { + height: 4rem; + } + .contact-note { font-size: 0.8rem; }