Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
feat: add skype and phone to the header
Browse files Browse the repository at this point in the history
  • Loading branch information
dcyou committed Sep 19, 2019
1 parent fc0315a commit 055c465
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/yaml/header.yml
Expand Up @@ -9,3 +9,4 @@ website:
twitter_username: david_turbert
github_username: dcyou
linkedin_username: dcyou
skype_username: live:david_48114
13 changes: 13 additions & 0 deletions components/Header.vue
Expand Up @@ -41,6 +41,19 @@
<i class="fas fa-paper-plane" title="Email link" />
</a>
</li>
<li v-if="header.phone">
<a target="_blank" :href="'tel:' + header.phone">
<i class="fas fa-phone-alt" title="Phone link" />
</a>
</li>
<li v-if="header.skype_username">
<a
target="_blank"
:href="'skype:' + header.skype_username + '?userinfo'"
>
<i class="fab fa-skype" title="Skype link" />
</a>
</li>
</ul>
</div>
</el-col>
Expand Down

0 comments on commit 055c465

Please sign in to comment.