Add WhatsApp to social integration (#945)
This commit is contained in:
parent
232ff286b2
commit
6bd11359a1
|
|
@ -73,6 +73,7 @@ twitter_username: # your Twitter handle
|
||||||
linkedin_username: # your LinkedIn user name
|
linkedin_username: # your LinkedIn user name
|
||||||
scholar_userid: # your Google Scholar ID
|
scholar_userid: # your Google Scholar ID
|
||||||
semanticscholar_id: # your Semantic Scholar ID
|
semanticscholar_id: # your Semantic Scholar ID
|
||||||
|
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.)
|
||||||
orcid_id: # your ORCID ID
|
orcid_id: # your ORCID ID
|
||||||
medium_username: # your Medium username
|
medium_username: # your Medium username
|
||||||
quora_username: # your Quora username
|
quora_username: # your Quora username
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
{%- if site.email -%}
|
{%- if site.email -%}
|
||||||
<a href="mailto:{{ site.email | encode_email }}" title="email"><i class="fas fa-envelope"></i></a>
|
<a href="mailto:{{ site.email | encode_email }}" title="email"><i class="fas fa-envelope"></i></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{%- if site.whatsapp_number -%}
|
||||||
|
<a href="https://wa.me/{{ site.whatsapp_number }}" title="whatsapp"><i class="fab fa-whatsapp"></i></a>
|
||||||
|
{% endif %}
|
||||||
{%- if site.orcid_id -%}
|
{%- if site.orcid_id -%}
|
||||||
<a href="https://orcid.org/{{ site.orcid_id }}" title="ORCID"><i class="ai ai-orcid"></i></a>
|
<a href="https://orcid.org/{{ site.orcid_id }}" title="ORCID"><i class="ai ai-orcid"></i></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue