forked from chadbaldwin/chadbaldwin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink.html
60 lines (51 loc) · 1.15 KB
/
link.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
50
51
52
53
54
55
56
57
58
59
60
---
layout: blank
---
<html>
<head>
<script type="text/javascript">
DarkReader.disable();
</script>
<style>
.page-content {
padding-top: 15px;
}
.avatar {
width: 95px;
max-width: 100%;
overflow: hidden;
border-radius: 100px;
margin: 0 auto;
display: block;
}
.link-item {
background-color: #4D5B32;
}
.link-content {
text-align: center;
padding-top: 15px;
padding-bottom: 15px;
}
a:link, a:visited {
color: white;
}
body {
background-color: #282929;
}
</style>
</head>
<body>
<div>
<a href='{{ site.url }}'>
<p><img src="https://www.gravatar.com/avatar/{{ site.gravatar_hash }}?size=100" class="avatar"></p>
</a>
</div>
{%- for link in site.social-links -%}
<div class="link-item">
<a href='{{ link[1] }}'>
<p class='link-content'>{{ link[0] }}</p>
</a>
</div>
{%- endfor -%}
</body>
</html>