Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added ability to choose custom linkedin profile #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ url: "" # the base hostname & protocol for your site

twitter_username:
github_username:
linkedin_username:

# Build settings
markdown: kramdown
14 changes: 10 additions & 4 deletions _includes/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,25 @@ <h2 class="section-heading">Let's Get In Touch!</h2>
<hr class="primary">
<p>Ready to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible!</p>
</div>
<div class="col-lg-2 col-lg-offset-2 text-center">
<div class="col-lg-3 col-lg-offset-2 text-center">
<a href="https://twitter.com/{{ site.twitter_username }}">
<i class="fa fa-twitter fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.twitter_username }}</p>
</a>
</div>
<div class="col-lg-2 col-lg-offset-1 text-center">
</div>
<div class="col-lg-3 col-lg-offset-1 text-center">
<a href="https://www.linkedin.com/in/{{ site.linkedin_username }}" target="_blank">
<i class="fa fa-linkedin fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.linkedin_username }}</p>
</a>
</div>
<div class="col-lg-3 col-lg-offset-1 text-center">
<a href="mailto:{{ site.email }}">
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.email }}</p>
</a>
</div>
<div class="col-lg-2 col-lg-offset-1 text-center">
<div class="col-lg-3 col-lg-offset-1 text-center">
<a href="https://github.com/{{ site.github_username }}">
<i class="fa fa-github fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.github_username }}</p>
Expand Down