forked from rampatra/JavaNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicons.html
More file actions
159 lines (140 loc) · 3.99 KB
/
icons.html
File metadata and controls
159 lines (140 loc) · 3.99 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{% if site.theme.rss %}
<li>
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" title="{{ site.theme.str_rss_follow }}">
<i class="fa fa-fw fa-rss"></i>
</a>
</li>
{% endif %}
{% if site.theme.email_address %}
<li>
<a href="mailto:{{ site.theme.email_address }}" title="{{ site.theme.str_email }}">
<i class="fa fa-fw fa-envelope"></i>
</a>
</li>
{% endif %}
{% if site.theme.behance %}
<li>
<a href="https://www.behance.net/{{ site.theme.behance }}" title="{{ site.theme.str_follow_on }} Behance">
<i class="fa fa-fw fa-behance"></i>
</a>
</li>
{% endif %}
{% if site.theme.bitbucket %}
<li>
<a href="https://bitbucket.org/{{ site.theme.bitbucket }}" title="{{ site.theme.str_follow_on }} Bitbucket">
<i class="fa fa-fw fa-bitbucket"></i>
</a>
</li>
{% endif %}
{% if site.theme.dribbble %}
<li>
<a href="https://dribbble.com/{{ site.theme.dribbble }}" title="{{ site.theme.str_follow_on }} Dribbble">
<i class="fa fa-fw fa-dribbble"></i>
</a>
</li>
{% endif %}
{% if site.theme.facebook %}
<li>
<a href="https://www.facebook.com/{{ site.theme.facebook }}" title="{{ site.theme.str_follow_on }} Facebook">
<i class="fa fa-fw fa-facebook"></i>
</a>
</li>
{% endif %}
{% if site.theme.flickr %}
<li>
<a href="https://www.flickr.com/photos/{{ site.theme.flickr }}" title="{{ site.theme.str_follow_on }} Flickr">
<i class="fa fa-fw fa-flickr"></i>
</a>
</li>
{% endif %}
{% if site.theme.github %}
<li>
<a href="https://github.com/{{ site.theme.github }}" title="{{ site.theme.str_follow_on }} GitHub">
<i class="fa fa-fw fa-github"></i>
</a>
</li>
{% endif %}
{% if site.theme.google_plus %}
<li>
<a href="https://plus.google.com/{{ site.theme.google_plus }}" title="{{ site.theme.str_follow_on }} Google+">
<i class="fa fa-fw fa-google-plus"></i>
</a>
</li>
{% endif %}
{% if site.theme.instagram %}
<li>
<a href="http://instagram.com/{{ site.theme.instagram }}" title="{{ site.theme.str_follow_on }} Instagram">
<i class="fa fa-fw fa-instagram"></i>
</a>
</li>
{% endif %}
{% if site.theme.linkedin %}
<li>
<a href="{{ site.theme.linkedin }}" title="{{ site.theme.str_follow_on }} LinkedIn">
<i class="fa fa-fw fa-linkedin"></i>
</a>
</li>
{% endif %}
{% if site.theme.pinterest %}
<li>
<a href="http://www.pinterest.com/{{ site.theme.pinterest }}" title="{{ site.theme.str_follow_on }} Pinterest">
<i class="fa fa-fw fa-pinterest"></i>
</a>
</li>
{% endif %}
{% if site.theme.reddit %}
<li>
<a href="https://www.reddit.com/user/{{ site.theme.reddit }}" title="{{ site.theme.str_follow_on }} Reddit">
<i class="fa fa-fw fa-reddit"></i>
</a>
</li>
{% endif %}
{% if site.theme.soundcloud %}
<li>
<a href="https://soundcloud.com/{{ site.theme.soundcloud }}" title="{{ site.theme.str_follow_on }} SoundCloud">
<i class="fa fa-fw fa-soundcloud"></i>
</a>
</li>
{% endif %}
{% if site.theme.stack_exchange %}
<li>
<a href="{{ site.theme.stack_exchange }}" title="{{ site.theme.str_follow_on }} Stack Exchange">
<i class="fa fa-fw fa-stack-exchange"></i>
</a>
</li>
{% endif %}
{% if site.theme.steam %}
<li>
<a href="http://steamcommunity.com/id/{{ site.theme.steam }}" title="{{ site.theme.str_follow_on }} Steam">
<i class="fa fa-fw fa-steam"></i>
</a>
</li>
{% endif %}
{% if site.theme.tumblr %}
<li>
<a href="http://{{ site.theme.tumblr }}.tumblr.com/" title="{{ site.theme.str_follow_on }} Tumblr">
<i class="fa fa-fw fa-tumblr"></i>
</a>
</li>
{% endif %}
{% if site.theme.twitter %}
<li>
<a href="https://twitter.com/{{ site.theme.twitter }}" title="{{ site.theme.str_follow_on }} Twitter">
<i class="fa fa-fw fa-twitter"></i>
</a>
</li>
{% endif %}
{% if site.theme.wordpress %}
<li>
<a href="https://{{ site.theme.wordpress }}.wordpress.com/" title="{{ site.theme.str_follow_on }} WordPress">
<i class="fa fa-fw fa-wordpress"></i>
</a>
</li>
{% endif %}
{% if site.theme.youtube %}
<li>
<a href="https://www.youtube.com/user/{{ site.theme.youtube }}" title="{{ site.theme.str_follow_on }} YouTube">
<i class="fa fa-fw fa-youtube"></i>
</a>
</li>
{% endif %}