forked from murraco/jekyll-theme-minimal-resume
-
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.
Changes hardcoded header values to variables
- Loading branch information
Showing
2 changed files
with
29 additions
and
6 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,12 @@ user_description: I'm a Software Engineer from Argentina, always searching for t | |
user_title: Software Engineer | ||
email: [email protected] | ||
# twitter_username: lorem_ipsum | ||
# github_username: lorem_ipsum | ||
instagram_username: mauriciourraco7 | ||
facebook_username: mauricio.urraco | ||
linkedin_username: murraco | ||
github_username: murraco | ||
# medium_username: lorem_ipsum | ||
# medium_url: lorem_ipsum.medium.com | ||
# gplus_username: lorem_ipsum | ||
|
||
exclude: ['package.json', 'src' , 'node_modules'] |
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 |
---|---|---|
|
@@ -5,11 +5,29 @@ <h1> | |
<span class="site-description">{{ site.user_title }}</span> | ||
</h1> | ||
<div class="header-icons"> | ||
<a aria-label="Send email" href="mailto:[email protected]"><i class="icon fa fa-envelope"></i></a> | ||
<a aria-label="My Instagram" target="_blank" href="https://www.instagram.com/mauriciourraco7"><i class="icon fa fa-instagram" aria-hidden="true"></i></a> | ||
<a aria-label="My Facebook" target="_blank" href="https://www.facebook.com/mauricio.urraco"><i class="icon fa fa-facebook" aria-hidden="true"></i></a> | ||
<a aria-label="My LinkedIn" target="_blank" href="https://www.linkedin.com/in/murraco"><i class="icon fa fa-linkedin-square" aria-hidden="true"></i></a> | ||
<a aria-label="My Github" target="_blank" href="https://github.com/murraco"><i class="icon fa fa-github-alt" aria-hidden="true"></i></a> | ||
{% if site.email %} | ||
<a aria-label="Send email" href="mailto:{{ site.email }}"><i class="icon fa fa-envelope"></i></a> | ||
{% endif %} | ||
{% if site.twitter_username %} | ||
<a aria-label="My Twitter" target="_blank" href="https://twitter.com/{{ site.twitter_username }}"><i class="icon fa fa-twitter" aria-hidden="true"></i></a> | ||
{% endif %} | ||
{% if site.instagram_username %} | ||
<a aria-label="My Instagram" target="_blank" href="https://www.instagram.com/{{ site.instagram_username }}"><i class="icon fa fa-instagram" aria-hidden="true"></i></a> | ||
{% endif %} | ||
{% if site.facebook_username %} | ||
<a aria-label="My Facebook" target="_blank" href="https://www.facebook.com/{{ site.facebook_username }}"><i class="icon fa fa-facebook" aria-hidden="true"></i></a> | ||
{% endif %} | ||
{% if site.linkedin_username %} | ||
<a aria-label="My LinkedIn" target="_blank" href="https://www.linkedin.com/in/{{ site.linkedin_username }}"><i class="icon fa fa-linkedin-square" aria-hidden="true"></i></a> | ||
{% endif %} | ||
{% if site.github_username %} | ||
<a aria-label="My Github" target="_blank" href="https://github.com/{{ site.github_username }}"><i class="icon fa fa-github-alt" aria-hidden="true"></i></a> | ||
{% endif %} | ||
{% if site.medium_username %} | ||
<a aria-label="My Medium" target="_blank" href="https://medium.com/{{ site.medium_username }}"><i class="icon fa fa-medium" aria-hidden="true"></i></a> | ||
{% elsif site.medium_url %} | ||
<a aria-label="My Medium" target="_blank" href="https://{{ site.medium_url }}"><i class="icon fa fa-medium" aria-hidden="true"></i></a> | ||
{% endif %} | ||
</div> | ||
<div class="header-links"> | ||
<!-- <a class="link" href="#about" data-scroll>About Me</a> --> | ||
|