-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (48 loc) · 1.38 KB
/
index.html
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
---
layout: default
og_image_url: https://danielliu.me/cover_photo.jpg
---
<main class="landing">
<section class="front-content">
<h1 class="name"><span>daniel</span> liu</h1>
<ul class="connect">
{% if site.twitter_username %}
<li>
<a href="https://twitter.com/{{ site.twitter_username }}"
><i class="fa fa-lg twit"></i
></a>
</li>
{% endif %} {% if site.github_username %}
<li>
<a href="https://github.com/{{ site.github_username }}"
><i class="fa fa-lg fa-github-alt"></i
></a>
</li>
{% endif %} {% if site.linkedin_username %}
<li>
<a href="https://www.linkedin.com/in/{{ site.linkedin_username }}"
><i class="fa fa-lg linkedin"></i
></a>
</li>
{% endif %} {% if site.email %}
<li>
<a href="mailto:{{ site.email }}"
><i class="fa fa-lg fa-envelope"></i
></a>
</li>
{% endif %} {% if site.facebook_username %}
<li>
<a href="https://www.facebook.com/{{ site.facebook_username }}"
><i class="fa fa-lg fbook"></i
></a>
</li>
{% endif %} {% if site.instagram_username %}
<li>
<a href="https://www.instagram.com/{{ site.instagram_username }}"
><i class="fa fa-lg insta"></i
></a>
</li>
{% endif %}
</ul>
</section>
</main>