Skip to content

Commit

Permalink
Merge pull request #30 from sproogen/feature/social-links-to-provide-…
Browse files Browse the repository at this point in the history
…text

Feature/social links to provide text
  • Loading branch information
sproogen authored Dec 2, 2018
2 parents dde7503 + 050eac3 commit a9d2b33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,70 +9,70 @@ <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"></i>
<i class="fa fa-dribbble" 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"></i>
<i class="fa 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"></i>
<i class="fa 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"></i>
<i class="fa 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"></i>
<i class="fa 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"></i>
<i class="fa fa-linkedin" title="Linkedin 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"></i>
<i class="fa 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"></i>
<i class="fa 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"></i>
<i class="fa fa-youtube-play" 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"></i>
<i class="fa fa-google-plus" title="Google plus link"></i>
</a>
</li>
{%- endif -%}
Expand Down
2 changes: 1 addition & 1 deletion _includes/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h4>{{ project.name }}</h4>
{%- endif -%}
<p>
<a href="https://github.com/{{ project.github }}" target="_blank">
<i class="fa fa-github"></i>
<i class="fa fa-github" title="{{ project.name }} Github link"></i>
</a>
</p>
</div>
Expand Down

0 comments on commit a9d2b33

Please sign in to comment.