Skip to content

Commit

Permalink
Merge pull request #66 from sproogen/release/1.7
Browse files Browse the repository at this point in the history
Release/1.7
  • Loading branch information
sproogen authored Nov 1, 2019
2 parents 1193df4 + 709c590 commit eb07647
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
modern-resume-theme (1.6.1)
modern-resume-theme (1.7.0)
github-pages (~> 198)
jekyll-seo-tag (~> 2.1)

Expand Down
22 changes: 11 additions & 11 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,77 +9,77 @@ <h2>{{ site.title | escape }}</h2>
{%- if site.dribbble_username -%}
<li>
<a target="_blank" href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-dribbble" title="Dribble link"></i>
<i class="fab fa-dribbble-square" title="Dribble link"></i>
</a>
</li>
{%- endif -%}
{%- if site.facebook_username -%}
<li>
<a target="_blank" href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-facebook" title="Facebook link"></i>
<i class="fab fa-facebook" title="Facebook link"></i>
</a>
</li>
{%- endif -%}
{%- if site.flickr_username -%}
<li>
<a target="_blank" href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-flickr" title="Flickr link"></i>
<i class="fab fa-flickr" title="Flickr link"></i>
</a>
</li>
{%- endif -%}
{%- if site.github_username -%}
<li>
<a target="_blank" href="https://github.com/{{ site.github_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-github" title="Github link"></i>
<i class="fab fa-github" title="Github link"></i>
</a>
</li>
{%- endif -%}
{%- if site.instagram_username -%}
<li>
<a target="_blank" href="https://www.instagram.com/{{ site.instagram_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-instagram" title="Instagram link"></i>
<i class="fab fa-instagram" title="Instagram link"></i>
</a>
</li>
{%- endif -%}
{%- if site.linkedin_username -%}
<li>
<a target="_blank" href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-linkedin" title="Linkedin link"></i>
<i class="fab fa-linkedin" title="Linkedin link"></i>
</a>
</li>
{%- endif -%}
{%- if site.xing_username -%}
<li>
<a target="_blank" href="https://www.xing.com/profile/{{ site.xing_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-xing" title="Xing link"></i>
<i class="fab fa-xing" title="Xing link"></i>
</a>
</li>
{%- endif -%}
{%- if site.pinterest_username -%}
<li>
<a target="_blank" href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-pinterest" title="Pintrest link"></i>
<i class="fab fa-pinterest" title="Pintrest link"></i>
</a>
</li>
{%- endif -%}
{%- if site.twitter_username -%}
<li>
<a target="_blank" href="https://twitter.com/{{ site.twitter_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-twitter" title="Twitter link"></i>
<i class="fab fa-twitter" title="Twitter link"></i>
</a>
</li>
{%- endif -%}
{%- if site.youtube_username -%}
<li>
<a target="_blank" href="https://www.youtube.com/{{ site.youtube_username| cgi_escape | escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-youtube-play" title="Youtube link"></i>
<i class="fab fa-youtube" title="Youtube link"></i>
</a>
</li>
{%- endif -%}
{%- if site.googleplus_username -%}
<li>
<a target="_blank" href="https://plus.google.com/{{ site.googleplus_username| escape }}" class="button button--sacnite button--round-l">
<i class="fa fa-google-plus" title="Google plus link"></i>
<i class="fab fa-google-plus" title="Google plus link"></i>
</a>
</li>
{%- endif -%}
Expand Down
3 changes: 2 additions & 1 deletion _sass/base.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,500,500italic,400italic,300italic,100italic,700italic);
@import url(https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css);
@import url(//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css);
@import url(https://use.fontawesome.com/releases/v5.11.2/css/all.css);
@import url(https://use.fontawesome.com/releases/v5.11.2/css/v4-shims.css);

button, input[type="button"], input[type="reset"], input[type="submit"] {
appearance: none;
Expand Down
2 changes: 1 addition & 1 deletion lib/modern-resume-theme/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ModernResumeTheme
VERSION = "1.6.1"
VERSION = "1.7.0"
end

0 comments on commit eb07647

Please sign in to comment.