diff --git a/_config.yml b/_config.yml index 7a09e6a..ec7596d 100644 --- a/_config.yml +++ b/_config.yml @@ -6,7 +6,8 @@ title: blank # the website title (if blank, full name will be used instead) first_name: You middle_name: R. last_name: Name -email: you@example.com +contact_note: > + You can even add a little note about which of these is the best way to reach you. description: > # the ">" symbol means to ignore newlines until "footer_text:" A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design. footer_text: > @@ -67,54 +68,6 @@ serve_og_meta: false # Include Open Graph meta tags in the HTML head serve_schema_org: false # Include Schema.org in the HTML head og_image: # The site-wide (default for all links) Open Graph preview image -# ----------------------------------------------------------------------------- -# Social integration -# ----------------------------------------------------------------------------- - -acm_id: # your dl.acm.org/profile/id -blogger_url: # your blogger URL -bluesky_url: # your bluesky URL -dblp_url: # your DBLP profile url -discord_id: # your discord id (18-digit unique numerical identifier) -facebook_id: # your facebook id -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 -inspirehep_id: 1010907 # Inspire HEP author ID -instagram_id: # your instagram id -kaggle_id: # your kaggle id -keybase_username: # your keybase user name -lastfm_id: # your lastfm id -lattes_id: # your ID on Lattes (Brazilian Lattes CV) -linkedin_username: # your LinkedIn user name -mastodon_username: # your mastodon instance+username in the format instance.tld/@username -medium_username: # your Medium username -orcid_id: # your ORCID ID -osf_id: # your OSF ID -pinterest_id: # your pinterest id -publons_id: # your ID on Publons -quora_username: # your Quora username -research_gate_profile: # your profile on ResearchGate -scholar_userid: qc6CJjYAAAAJ # your Google Scholar ID -scopus_id: # your profile on Scopus -semanticscholar_id: # your Semantic Scholar ID -spotify_id: # your spotify id -stackoverflow_id: # your stackoverflow id -telegram_username: # your Telegram user name -unsplash_id: # your unsplash id -wechat_qr: # filename of your wechat qr-code saved as an image (e.g., wechat-qr.png if saved to assets/img/wechat-qr.png) -whatsapp_number: # your WhatsApp number (full phone number in international format. Omit any zeroes, brackets, or dashes when adding the phone number in international format.) -wikidata_id: # your wikidata id -wikipedia_id: # your wikipedia id (Case sensitive) -work_url: # work page URL -x_username: # your X handle -youtube_id: # your youtube channel id (youtube.com/@) -zotero_username: # your zotero username - -contact_note: > - You can even add a little note about which of these is the best way to reach you. - # ----------------------------------------------------------------------------- # Analytics and search engine verification # ----------------------------------------------------------------------------- diff --git a/_data/socials.yml b/_data/socials.yml new file mode 100644 index 0000000..e9aa443 --- /dev/null +++ b/_data/socials.yml @@ -0,0 +1,51 @@ +# this file contains the social media links and usernames of the author +# the commented lines are the default social media links supported by the template +# the socials will be displayed in the order they are defined here + +# acm_id: # your dl.acm.org/profile/id +# blogger_url: # your blogger URL +# bluesky_url: # your bluesky URL +# dblp_url: # your DBLP profile url +# discord_id: # your discord id (18-digit unique numerical identifier) +email: you@example.com # your email address +# facebook_id: # your facebook id +# 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 +inspirehep_id: 1010907 # Inspire HEP author ID +# instagram_id: # your instagram id +# kaggle_id: # your kaggle id +# keybase_username: # your keybase user name +# lastfm_id: # your lastfm id +# lattes_id: # your ID on Lattes (Brazilian Lattes CV) +# leetcode_id: # your LeetCode id +# linkedin_username: # your LinkedIn user name +# mastodon_username: # your mastodon instance+username in the format instance.tld/@username +# medium_username: # your Medium username +# orcid_id: # your ORCID ID +# osf_id: # your OSF ID +# pinterest_id: # your pinterest id +# publons_id: # your ID on Publons +# quora_username: # your Quora username +# research_gate_profile: # your profile on ResearchGate +rss_icon: true # set to true to show the RSS icon +scholar_userid: qc6CJjYAAAAJ # your Google Scholar ID +# scopus_id: # your profile on Scopus +# semanticscholar_id: # your Semantic Scholar ID +# spotify_id: # your spotify id +# stackoverflow_id: # your stackoverflow id +# telegram_username: # your Telegram user name +# unsplash_id: # your unsplash id +# wechat_qr: # filename of your wechat qr-code saved as an image (e.g., wechat-qr.png if saved to assets/img/wechat-qr.png) +# whatsapp_number: # your WhatsApp number (full phone number in international format. Omit any zeroes, brackets, or dashes when adding the phone number in international format.) +# wikidata_id: # your wikidata id +# wikipedia_id: # your wikipedia id (Case sensitive) +# work_url: # work page URL +# x_username: # your X handle +# youtube_id: # your youtube channel id (youtube.com/@) +# zotero_username: # your zotero username +custom_social: # can be any name here other than the ones already defined above + logo: https://www.alberteinstein.com/wp-content/uploads/2024/03/cropped-favicon-192x192.png # can be png, svg, jpg + title: Custom Social + url: https://www.alberteinstein.com/ diff --git a/_includes/head.liquid b/_includes/head.liquid index 609f8fb..b4d96ef 100644 --- a/_includes/head.liquid +++ b/_includes/head.liquid @@ -23,6 +23,7 @@ + { - window.open("mailto:{{ site.email | encode_email }}", "_blank"); + window.open("{{ social_url }}", "_blank"); }, }, - {%- endif -%} - {%- if site.telegram_username -%} - { - id: 'socials-telegram', - title: 'Telegram', - section: 'Socials', - handler: () => { - window.open("https://telegram.me/{{ site.telegram_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.whatsapp_number -%} - { - id: 'socials-whatsapp', - title: 'WhatsApp', - section: 'Socials', - handler: () => { - window.open("https://wa.me/{{ site.whatsapp_number }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.orcid_id -%} - { - id: 'socials-orcid', - title: 'ORCID', - section: 'Socials', - handler: () => { - window.open("https://orcid.org/{{ site.orcid_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.scholar_userid -%} - { - id: 'socials-google-scholar', - title: 'Google Scholar', - section: 'Socials', - handler: () => { - window.open("https://scholar.google.com/citations?user={{ site.scholar_userid }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.semanticscholar_id -%} - { - id: 'socials-semantic-scholar', - title: 'Semantic Scholar', - section: 'Socials', - handler: () => { - window.open("https://www.semanticscholar.org/author/{{ site.semanticscholar_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.publons_id -%} - { - id: 'socials-publons', - title: 'Publons', - section: 'Socials', - handler: () => { - window.open("https://publons.com/a/{{ site.publons_id }}/", "_blank"); - }, - }, - {%- endif -%} - {%- if site.lattes_id -%} - { - id: 'socials-lattes', - title: 'Lattes', - section: 'Socials', - handler: () => { - window.open("http://lattes.cnpq.br/{{ site.lattes_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.osf_id -%} - { - id: 'socials-open-science-framework', - title: 'Open Science Framework', - section: 'Socials', - handler: () => { - window.open("https://osf.io/{{ site.osf_id }}/", "_blank"); - }, - }, - {%- endif -%} - {%- if site.research_gate_profile -%} - { - id: 'socials-researchgate', - title: 'ResearchGate', - section: 'Socials', - handler: () => { - window.open("https://www.researchgate.net/profile/{{ site.research_gate_profile }}/", "_blank"); - }, - }, - {%- endif -%} - {%- if site.ieee_id -%} - { - id: 'socials-ieee-xplore', - title: 'IEEE Xplore', - section: 'Socials', - handler: () => { - window.open("https://ieeexplore.ieee.org/author/{{ site.ieee_id }}/", "_blank"); - }, - }, - {%- endif -%} - {%- if site.acm_id -%} - { - id: 'socials-acm-dl', - title: 'ACM DL', - section: 'Socials', - handler: () => { - window.open("https://dl.acm.org/profile/{{ site.acm_id }}/", "_blank"); - }, - }, - {%- endif -%} - {%- if site.scopus_id -%} - { - id: 'socials-scopus', - title: 'Scopus', - section: 'Socials', - handler: () => { - window.open("https://www.scopus.com/authid/detail.uri?authorId={{ site.scopus_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.github_username -%} - { - id: 'socials-github', - title: 'GitHub', - section: 'Socials', - handler: () => { - window.open("https://github.com/{{ site.github_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.linkedin_username -%} - { - id: 'socials-linkedin', - title: 'LinkedIn', - section: 'Socials', - handler: () => { - window.open("https://www.linkedin.com/in/{{ site.linkedin_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.x_username -%} - { - id: 'socials-x', - title: 'X', - description: 'Twitter', - section: 'Socials', - handler: () => { - window.open("https://twitter.com/{{ site.x_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.mastodon_username -%} - { - id: 'socials-mastodon', - title: 'Mastodon', - section: 'Socials', - handler: () => { - window.open("https://{{ site.mastodon_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.medium_username -%} - { - id: 'socials-medium', - title: 'Medium', - section: 'Socials', - handler: () => { - window.open("https://medium.com/@{{ site.medium_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.quora_username -%} - { - id: 'socials-quora', - title: 'Quora', - section: 'Socials', - handler: () => { - window.open("https://www.quora.com/profile/{{ site.quora_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.flickr_id -%} - { - id: 'socials-flickr', - title: 'Flickr', - section: 'Socials', - handler: () => { - window.open("https://www.flickr.com/{{ site.flickr_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.blogger_url -%} - { - id: 'socials-blogger', - title: 'Blogger', - section: 'Socials', - handler: () => { - window.open("{{ site.blogger_url }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.work_url -%} - { - id: 'socials-work', - title: 'Work', - section: 'Socials', - handler: () => { - window.open("{{ site.work_url }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.wikidata_id -%} - { - id: 'socials-wikidata', - title: 'Wikidata', - section: 'Socials', - handler: () => { - window.open("https://www.wikidata.org/wiki/{{ site.wikidata_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.wikipedia_id -%} - { - id: 'socials-wikipedia', - title: 'Wikipedia', - section: 'Socials', - handler: () => { - window.open("https://wikipedia.org/wiki/User:{{ site.wikipedia_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.strava_userid -%} - { - id: 'socials-strava', - title: 'Strava', - section: 'Socials', - handler: () => { - window.open("https://www.strava.com/athletes/{{ site.strava_userid }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.keybase_username -%} - { - id: 'socials-keybase', - title: 'Keybase', - section: 'Socials', - handler: () => { - window.open("https://keybase.io/{{ site.keybase_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.gitlab_username -%} - { - id: 'socials-gitlab', - title: 'GitLab', - section: 'Socials', - handler: () => { - window.open("https://gitlab.com/{{ site.gitlab_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.dblp_url -%} - { - id: 'socials-dblp', - title: 'DBLP', - section: 'Socials', - handler: () => { - window.open("{{ site.dblp_url }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.stackoverflow_id -%} - { - id: 'socials-stackoverflow', - title: 'Stackoverflow', - section: 'Socials', - handler: () => { - window.open("https://stackoverflow.com/users/{{ site.stackoverflow_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.kaggle_id -%} - { - id: 'socials-kaggle', - title: 'Kaggle', - section: 'Socials', - handler: () => { - window.open("https://www.kaggle.com/{{ site.kaggle_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.lastfm_id -%} - { - id: 'socials-last-fm', - title: 'Last FM', - section: 'Socials', - handler: () => { - window.open("https://www.last.fm/user/{{ site.lastfm_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.spotify_id -%} - { - id: 'socials-spotify', - title: 'Spotify', - section: 'Socials', - handler: () => { - window.open("https://open.spotify.com/user/{{ site.spotify_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.pinterest_id -%} - { - id: 'socials-pinterest', - title: 'Pinterest', - section: 'Socials', - handler: () => { - window.open("https://www.pinterest.com/{{ site.pinterest_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.unsplash_id -%} - { - id: 'socials-unsplash', - title: 'Unsplash', - section: 'Socials', - handler: () => { - window.open("https://unsplash.com/@{{ site.unsplash_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.instagram_id -%} - { - id: 'socials-instagram', - title: 'Instagram', - section: 'Socials', - handler: () => { - window.open("https://instagram.com/{{ site.instagram_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.facebook_id -%} - { - id: 'socials-facebook', - title: 'Facebook', - section: 'Socials', - handler: () => { - window.open("https://facebook.com/{{ site.facebook_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.bluesky_url -%} - { - id: 'socials-bluesky', - title: 'Bluesky', - section: 'Socials', - handler: () => { - window.open("https://bsky.app/profile/{{ site.bluesky_url }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.youtube_id -%} - { - id: 'socials-youtube', - title: 'YouTube', - section: 'Socials', - handler: () => { - window.open("https://youtube.com/@{{ site.youtube_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.discord_id -%} - { - id: 'socials-discord', - title: 'Discord', - section: 'Socials', - handler: () => { - window.open("https://discord.com/users/{{ site.discord_id }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.zotero_username -%} - { - id: 'socials-zotero', - title: 'Zotero', - section: 'Socials', - handler: () => { - window.open("https://www.zotero.org/{{ site.zotero_username }}", "_blank"); - }, - }, - {%- endif -%} - {%- if site.rss_icon -%} - { - id: 'socials-rss', - title: 'RSS Feed', - section: 'Socials', - handler: () => { - window.open("{{ site.baseurl }}/feed.xml", "_blank"); - }, - }, - {%- endif -%} - {%- comment -%} - {%- if site.wechat_qr -%} - // check how to add wechat qr code - { - id: 'socials-wechat', - title: 'WeChat', - section: 'Socials', - handler: () => { - window.open("", "_blank"); - }, - }, - {%- endif -%} - {%- endcomment -%} + {%- endfor -%} {%- endif -%} {%- if site.enable_darkmode -%} { diff --git a/_includes/social.liquid b/_includes/social.liquid index ca8c6ba..7947f2c 100644 --- a/_includes/social.liquid +++ b/_includes/social.liquid @@ -1,133 +1,110 @@ -{% if site.email %} - -{% endif %} -{% if site.telegram_username %} - -{% endif %} -{% if site.whatsapp_number %} - -{% endif %} -{% if site.orcid_id %} - -{% endif %} -{% if site.scholar_userid %} - -{% endif %} -{% if site.inspirehep_id %} - -{% endif %} -{% if site.semanticscholar_id %} - -{% endif %} -{% if site.publons_id %} - -{% endif %} -{% if site.lattes_id %} - -{% endif %} -{% if site.osf_id %} - -{% endif %} -{% if site.research_gate_profile %} - -{% endif %} -{% if site.ieee_id %} - -{% endif %} -{% if site.acm_id %} - -{% endif %} -{% if site.scopus_id %} - -{% endif %} -{% if site.github_username %} - -{% endif %} -{% if site.linkedin_username %} - -{% endif %} -{% if site.x_username %} - -{% endif %} -{% if site.mastodon_username %} - -{% endif %} -{% if site.medium_username %} - -{% endif %} -{% if site.quora_username %} - -{% endif %} -{% if site.flickr_id %} - -{% endif %} -{% if site.blogger_url %} - -{% endif %} -{% if site.work_url %} - -{% endif %} -{% if site.wikidata_id %} - -{% endif %} -{% if site.wikipedia_id %} - -{% endif %} -{% if site.strava_userid %} - -{% endif %} -{% if site.keybase_username %} - -{% endif %} -{% if site.gitlab_username %} - -{% endif %} -{% if site.dblp_url %} - -{% endif %} -{% if site.stackoverflow_id %} - -{% endif %} -{% if site.kaggle_id %} - -{% endif %} -{% if site.lastfm_id %} - -{% endif %} -{% if site.spotify_id %} - -{% endif %} -{% if site.pinterest_id %} - -{% endif %} -{% if site.unsplash_id %} - -{% endif %} -{% if site.instagram_id %} - -{% endif %} -{% if site.facebook_id %} - -{% endif %} -{% if site.bluesky_url %} - -{% endif %} -{% if site.youtube_id %} - -{% endif %} -{% if site.discord_id %} - -{% endif %} -{% if site.zotero_username %} - -{% endif %} -{% if site.rss_icon %} - -{% endif %} -{% if site.wechat_qr %} - -
- WeChat QR -
- {% include scripts/wechatModal.liquid %} -{% endif %} +{% for social in site.data.socials %} + {% case social[0] %} + {% when 'acm_id' %} + + {% when 'blogger_url' %} + + {% when 'bluesky_url' %} + + {% when 'dblp_url' %} + + {% when 'discord_id' %} + + {% when 'email' %} + + {% when 'facebook_id' %} + + {% when 'flickr_id' %} + + {% when 'github_username' %} + + {% when 'gitlab_username' %} + + {% when 'ieee_id' %} + + {% when 'inspirehep_id' %} + + {% when 'instagram_id' %} + + {% when 'kaggle_id' %} + + {% when 'keybase_username' %} + + {% when 'lastfm_id' %} + + {% when 'lattes_id' %} + + {% when 'leetcode_id' %} + + {% when 'linkedin_username' %} + + {% when 'mastodon_username' %} + + {% when 'medium_username' %} + + {% when 'orcid_id' %} + + {% when 'osf_id' %} + + {% when 'pinterest_id' %} + + {% when 'publons_id' %} + + {% when 'quora_username' %} + + {% when 'research_gate_profile' %} + + {% when 'rss_icon' %} + + {% when 'scholar_userid' %} + + {% when 'scopus_id' %} + + {% when 'semanticscholar_id' %} + + {% when 'spotify_id' %} + + {% when 'stackoverflow_id' %} + + {% when 'strava_userid' %} + + {% when 'telegram_username' %} + + {% when 'unsplash_id' %} + + {% when 'wechat_qr' %} + +
+ WeChat QR +
+ {% include scripts/wechatModal.liquid %} + {% when 'whatsapp_number' %} + + {% when 'wikidata_id' %} + + {% when 'wikipedia_id' %} + + {% when 'work_url' %} + + {% when 'x_username' %} + + {% when 'youtube_id' %} + + {% when 'zotero_username' %} + + {% else %} + + {% assign file_ext = social[1].logo | split: '.' | last %} + {% if file_ext == 'svg' %} + + + + {% else %} + {{ social[1].title }} + {% endif %} + + {% endcase %} +{% endfor %} diff --git a/_sass/_base.scss b/_sass/_base.scss index f9840f8..5272783 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -311,6 +311,24 @@ ul.task-list input[type="checkbox"] { font-size: 1.7rem; a { + img { + width: 1.7rem; + height: 1.7rem; + margin-bottom: 0.5rem; + // margin: 0.5rem; + } + + svg { + width: 1.7rem; + height: 1.7rem; + margin-bottom: 0.5rem; + + image { + width: 1.7rem; + height: 1.7rem; + } + } + i::before { color: var(--global-text-color); transition-property: all 0.2s ease-in-out; @@ -386,12 +404,31 @@ ul.task-list input[type="checkbox"] { font-size: 4rem; a { + img { + width: 3.2rem; + height: 3.2rem; + margin-bottom: 1rem; + } + + svg { + width: 3.5rem; + height: 4rem; + margin-bottom: 0.5rem; + + image { + width: 3.5rem; + height: 3.5rem; + } + } + i::before { color: var(--global-text-color); transition-property: all 0.2s ease-in-out; } &:hover { + text-decoration: none; + i::before { color: var(--global-theme-color); } diff --git a/assets/css/scholar-icons.css b/assets/css/scholar-icons.css new file mode 100644 index 0000000..d378334 --- /dev/null +++ b/assets/css/scholar-icons.css @@ -0,0 +1,386 @@ +/* + * Scholar Icons v1.0.2 by @louisfacun – https://github.com/louisfacun/scholar-icons + * License – Fonts: SIL OFL 1.1, Codes: MIT License, Icons: CC BY 4.0 + */ + +@font-face { + font-family: "Scholar Icons"; + src: url("../fonts/scholar-icons.eot"); + src: + url("../fonts/scholar-icons.eot") format("embedded-opentype"), + url("../fonts/scholar-icons.ttf") format("truetype"), + url("../fonts/scholar-icons.woff") format("woff"), + url("../fonts/scholar-icons.svg") format("svg"); + font-style: normal; + font-weight: normal; + font-display: block; +} + +.si { + font-family: "Scholar Icons" !important; + font-weight: 400; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + text-transform: none; + line-height: 1; +} + +.si-1x { + font-size: 1em; +} + +.si-2x { + font-size: 2em; +} + +.si-3x { + font-size: 3em; +} + +.si-4x { + font-size: 4em; +} + +.si-5x { + font-size: 5em; +} + +.si-6x { + font-size: 6em; +} + +.si-7x { + font-size: 7em; +} + +.si-8x { + font-size: 8em; +} +.si-arduino:before { + content: "\e956"; +} +.si-biorxiv:before { + content: "\e957"; +} +.si-cplusplus:before { + content: "\e958"; +} +.si-csharp:before { + content: "\e959"; +} +.si-css3:before { + content: "\e95a"; +} +.si-debian:before { + content: "\e95b"; +} +.si-debian-diversity:before { + content: "\e95c"; +} +.si-dotnet:before { + content: "\e95d"; +} +.si-gitlab:before { + content: "\e95e"; +} +.si-hackerearth:before { + content: "\e95f"; +} +.si-hackerrank:before { + content: "\e960"; +} +.si-hal:before { + content: "\e961"; +} +.si-html5:before { + content: "\e962"; +} +.si-lattes:before { + content: "\e963"; +} +.si-leetcode:before { + content: "\e964"; +} +.si-medrxiv:before { + content: "\e965"; +} +.si-mysql:before { + content: "\e966"; +} +.si-php:before { + content: "\e967"; +} +.si-r:before { + content: "\e968"; +} +.si-sas:before { + content: "\e969"; +} +.si-tableau:before { + content: "\e96a"; +} +.si-the-conversation:before { + content: "\e96b"; +} +.si-academia:before { + content: "\e900"; +} +.si-academia-square:before { + content: "\e901"; +} +.si-acm:before { + content: "\e902"; +} +.si-arxiv:before { + content: "\e903"; +} +.si-citavi:before { + content: "\e904"; +} +.si-codecademy:before { + content: "\e905"; +} +.si-coursera:before { + content: "\e906"; +} +.si-crossref:before { + content: "\e907"; +} +.si-dblp:before { + content: "\e908"; +} +.si-deeplearning-ai:before { + content: "\e909"; +} +.si-degree-bs:before { + content: "\e90a"; +} +.si-degree-ma:before { + content: "\e90b"; +} +.si-degree-mba:before { + content: "\e90c"; +} +.si-degree-md:before { + content: "\e90d"; +} +.si-degree-ms:before { + content: "\e90e"; +} +.si-degree-phd:before { + content: "\e90f"; +} +.si-devto:before { + content: "\e910"; +} +.si-doaj:before { + content: "\e911"; +} +.si-doi:before { + content: "\e912"; +} +.si-edx:before { + content: "\e913"; +} +.si-elsevier:before { + content: "\e914"; +} +.si-endnote:before { + content: "\e915"; +} +.si-endnote-square:before { + content: "\e916"; +} +.si-facebook:before { + content: "\e917"; +} +.si-freecodecamp:before { + content: "\e918"; +} +.si-futurelearn:before { + content: "\e919"; +} +.si-github:before { + content: "\e91a"; +} +.si-google-scholar:before { + content: "\e91b"; +} +.si-hackernoon:before { + content: "\e91c"; +} +.si-ieee:before { + content: "\e91d"; +} +.si-ieee-alt:before { + content: "\e91e"; +} +.si-iet:before { + content: "\e91f"; +} +.si-image-sc:before { + content: "\e920"; +} +.si-impact-story:before { + content: "\e921"; +} +.si-jstor:before { + content: "\e922"; +} +.si-kaggle:before { + content: "\e923"; +} +.si-keras:before { + content: "\e924"; +} +.si-khan-academy:before { + content: "\e925"; +} +.si-latex:before { + content: "\e926"; +} +.si-latex-alt:before { + content: "\e927"; +} +.si-linkedin:before { + content: "\e928"; +} +.si-mathworks:before { + content: "\e929"; +} +.si-medium:before { + content: "\e92a"; +} +.si-mendeley:before { + content: "\e92b"; +} +.si-numpy:before { + content: "\e92c"; +} +.si-nwo-nl:before { + content: "\e92d"; +} +.si-open-access:before { + content: "\e92e"; +} +.si-opencv:before { + content: "\e92f"; +} +.si-openscience-nl:before { + content: "\e930"; +} +.si-orcid:before { + content: "\e931"; +} +.si-pandas:before { + content: "\e932"; +} +.si-papers-with-code:before { + content: "\e933"; +} +.si-piazza:before { + content: "\e934"; +} +.si-piazza-square:before { + content: "\e935"; +} +.si-publons:before { + content: "\e936"; +} +.si-publons-square:before { + content: "\e937"; +} +.si-pubmed:before { + content: "\e938"; +} +.si-python:before { + content: "\e939"; +} +.si-pytorch:before { + content: "\e93a"; +} +.si-quora:before { + content: "\e93b"; +} +.si-reddit:before { + content: "\e93c"; +} +.si-researchgate:before { + content: "\e93d"; +} +.si-researchgate-square:before { + content: "\e93e"; +} +.si-scopus:before { + content: "\e93f"; +} +.si-scribd:before { + content: "\e940"; +} +.si-se-academia:before { + content: "\e941"; +} +.si-se-ai:before { + content: "\e942"; +} +.si-se-ask-ubuntu:before { + content: "\e943"; +} +.si-semantic-scholar:before { + content: "\e944"; +} +.si-se-mathematics:before { + content: "\e945"; +} +.si-se-superuser:before { + content: "\e946"; +} +.si-skillshare:before { + content: "\e947"; +} +.si-sklearn:before { + content: "\e948"; +} +.si-springer:before { + content: "\e949"; +} +.si-springer-nature:before { + content: "\e94a"; +} +.si-ssrn:before { + content: "\e94b"; +} +.si-stack-exchange:before { + content: "\e94c"; +} +.si-stack-overflow:before { + content: "\e94d"; +} +.si-surf-nl:before { + content: "\e94e"; +} +.si-tensorflow:before { + content: "\e94f"; +} +.si-twitter:before { + content: "\e950"; +} +.si-udacity:before { + content: "\e951"; +} +.si-udemy:before { + content: "\e952"; +} +.si-xing:before { + content: "\e953"; +} +.si-zenodo:before { + content: "\e954"; +} +.si-zotero:before { + content: "\e955"; +} diff --git a/assets/fonts/scholar-icons.ttf b/assets/fonts/scholar-icons.ttf new file mode 100644 index 0000000..4ecda91 Binary files /dev/null and b/assets/fonts/scholar-icons.ttf differ diff --git a/assets/fonts/scholar-icons.woff b/assets/fonts/scholar-icons.woff new file mode 100644 index 0000000..f0cb07e Binary files /dev/null and b/assets/fonts/scholar-icons.woff differ