-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (43 loc) · 1.62 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
<!--
greetings! this site is created with taproot ( https://github.com/brianlaclair/taproot )
if you are the owner of this site, consider reading the README file before making changes here
it is likely that most modifications you'd like to make are possible through config files
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- modify to change how social media sites preview your link -->
<title>taproot</title>
<meta name="description" content="all of my links in one place">
<meta property="og:image" content="media/avatar.webp"/>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="taproot">
<meta name="twitter:image" content="https://brianlaclair.github.io/taproot/media/avatar.webp">
<link rel="icon" href="media/favicon.ico" type="image/x-icon">
<!-- do not modify -->
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<script>var autoload = true;</script>
<script src="build.js"></script>
</head>
<body>
<div id="profileHead" class="standardVertical">
<div id="profilePic">
<img id="profilePicture" class="profileImage"></img>
</div>
<div id="profileName">
</div>
<div id="profileDescription">
</div>
</div>
<div id="linkList" class="standardVertical">
</div>
<div id="socialLinks">
</div>
<div class="backgroundImageHolder">
<img id="background" class="backgroundImage" src=""></img>
</div>
</body>
</html>