-
-
Notifications
You must be signed in to change notification settings - Fork 670
Expand file tree
/
Copy pathcontact.html
More file actions
63 lines (63 loc) · 4.07 KB
/
contact.html
File metadata and controls
63 lines (63 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<section class="hero is-fullheight has-text-centered" id="contact">
<div class="hero-body">
<div class="container">
{% unless site.facebook_username == %}
<a id="contact-button" href="https://m.me/{{site.facebook_username}}"
class="button is-rounded is-uppercase has-text-weight-normal is-black is-outlined has-text-weight-semibold column is-two-fifths"
target="_blank">
<i class="fab fa-facebook-messenger"></i>Ping me on Messenger
</a>
{% endunless %}
{% unless site.email == %}
<a id="contact-button" href="mailto:{{site.email}}"
class="button is-rounded is-uppercase has-text-weight-normal is-black is-outlined has-text-weight-semibold column is-two-fifths"
target="_blank">
<i class="fas fa-envelope"></i>Send me an Email
</a>
{% endunless %}
{% unless site.twitter_username == %}
<a id="contact-button" href="https://www.twitter.com/intent/tweet?screen_name={{site.twitter_username}}"
class="button is-rounded is-uppercase has-text-weight-normal is-black is-outlined has-text-weight-semibold column is-two-fifths"
target="_blank">
<i class="fab fa-twitter"></i>Tweet me on Twitter
</a>
{% endunless %}
<hr>
<h3 class="is-size-5 is-uppercase has-text-weight-semibold has-text-black is-marginless">
You Can find me here
</h3>
<div class="column is-full is-size-3">
{% unless site.facebook_username == %}
<a href="http://www.facebook.com/{{site.facebook_username}}" target="_blank" class="has-text-black"><i class="fab fa-facebook"></i></a>
{% endunless %}
{% unless site.twitter_username == %}
<a href="https://twitter.com/intent/user?screen_name={{site.twitter_username}}" target="_blank" class="has-text-black"><i class="fab fa-twitter"></i></a>
{% endunless %}
{% unless site.instagram_username == %}
<a href="http://www.instagram.com/{{site.instagram_username}}" target="_blank" class="has-text-black"><i class="fab fa-instagram"></i></a>
{% endunless %}
{% unless site.linkedin_username == %}
<a href="http://www.linkedin.com/in/{{site.linkedin_username}}" target="_blank" class="has-text-black"><i class="fab fa-linkedin"></i></a>
{% endunless %}
{% unless site.github_username == %}
<a href="http://www.github.com/{{site.github_username}}" target="_blank" class="has-text-black"><i class="fab fa-github"></i></a>
{% endunless %}
{% unless site.youtube_channel_id == %}
<a href="http://www.youtube.com/channel/{{site.youtube_channel_id}}" target="_blank" class="has-text-black"><i class="fab fa-youtube"></i></a>
{% endunless %}
{% unless site.reddit_username == %}
<a href="http://www.reddit.com/u/{{site.reddit_username}}" target="_blank" class="has-text-black"><i class="fab fa-reddit"></i></a>
{% endunless %}
{% unless site.behance_username == %}
<a href="http://www.behance.com/{{site.behance_username}}" target="_blank" class="has-text-black"><i class="fab fa-behance"></i></a>
{% endunless %}
{% unless site.dribbble_username == %}
<a href="http://www.dribbble.com/{{site.dribbble_username}}" target="_blank" class="has-text-black"><i class="fab fa-dribbble"></i></a>
{% endunless %}
{% unless site.spotify_username == %}
<a href="http://open.spotify.com/user/{{site.spotify_username}}" target="_blank" class="has-text-black"><i class="fab fa-spotify"></i></a>
{% endunless %}
</div>
</div>
</div>
</section>