Merge pull request #29 from andrealmeid/master

Adds telegram contact to social links
This commit is contained in:
Huy Tran 2018-08-18 14:28:13 +07:00 committed by GitHub
commit a5e891d92f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -29,6 +29,7 @@ theme = "hyde-hyde"
twitter = "<username>"
facebook = "<username>"
stackoverflow = "<username>"
telegram = "<username>"
email = "your-email@example.com"
## Main Menu

View file

@ -32,6 +32,9 @@
{{ with .Site.Params.social.keybase }}
&nbsp;<a href="https://keybase.io/{{.}}"><i class="fab fa-keybase fa-lg" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.social.telegram }}
&nbsp;<a href="https://t.me/{{.}}"><i class="fab fa-telegram fa-lg" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.social.email }}
&nbsp;<a href="mailto:{{.}}"><i class="fas fa-at fa-lg" aria-hidden="true"></i></a>
{{ end }}