-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from skipgu/add-social-media-hyperlinks
Add social media hyperlinks
- Loading branch information
Showing
6 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<ul class="contact-list"> | ||
{% if site.instagram_username %} | ||
<li>{% include icon-instagram.html username=site.instagram_username label='Instagram' %}</li> | ||
{% endif %} | ||
|
||
{% if site.discord_link %} | ||
<li>{% include icon-discord.html link=site.discord_link label='Discord' %}</li> | ||
{% endif %} | ||
|
||
{% if site.linkedin_username %} | ||
<li>{% include icon-linkedin.html username=site.linkedin_username label='LinkedIn' %}</li> | ||
{% endif %} | ||
|
||
|
||
{% if site.github_username %} | ||
<li>{% include icon-github.html username=site.github_username label='GitHub' %}</li> | ||
{% endif %} | ||
|
||
|
||
|
||
{% if site.twitter_username %} | ||
<li>{% include icon-twitter.html username=site.twitter_username label='Twitter' %}</li> | ||
{% endif %} | ||
|
||
{% if site.email %} | ||
<li> | ||
<a href="mailto:{{ site.email }}"> | ||
<span class="icon icon--email">{% include icon-email.svg %}</span> | ||
<span class="label">{{ site.data.theme.t.email | default: 'Email' }}</span> | ||
</a> | ||
</li> | ||
{% endif %} | ||
|
||
<li> | ||
{% if site.plugins contains 'jekyll-feed' or site.gems contains 'jekyll-feed' %} | ||
<a href="{{ site.feed.path | default: 'feed.xml' | relative_url }}" title="Atom Feed"> | ||
<span class="icon icon--rss">{% include icon-rss.svg %}</span> | ||
<span class="label">{{ site.data.theme.t.subscribe | default: 'Subscribe' }}</span> | ||
</a> | ||
{% endif %} | ||
</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<a href="{{ include.link }}"> | ||
<span class="icon icon--discord">{% include icon-discord.svg %}</span> | ||
<span class="label">{{ include.label }}</span> | ||
</a> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.