forked from sethcottle/littlelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (75 loc) · 5.25 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
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
<!DOCTYPE html>
<!--
To change the theme, change the class on the html tag below to one of:
- theme-auto: Automatically switches based on user's system preferences
- theme-light: Forces light theme
- theme-dark: Forces dark theme
-->
<html class="theme-auto" lang="de"> <!-- Update`class="theme-auto" with your preference -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page Title - Change this to your name/brand (50-60 characters recommended) -->
<title>JustEdris</title>
<link rel="icon" type="image/x-icon" href="/images/avatar.png"> <!-- Update this with your own favicon -->
<!-- Meta Description - Write a description (150-160 characters recommended) -->
<meta name="description" content="JustEdris Social Media Links">
<!-- Keywords -->
<meta name="keywords" content="JustEdris, twitch, youtube, instagram, twitter, social media">
<!-- Canonical URL - Helps prevent duplicate content issues -->
<meta rel="canonical" href="https://links.justedris.de">
<!-- Author Information -->
<meta name="author" content="JustEdris">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/brands.css">
</head>
<body>
<div class="container">
<div class="column">
<!--
By default, the Avatar is rounded. Use the following:
- avatar--rounded: Automatically rounds the image
- avatar--soft: Slightly rounds the image
- avatar--none: Removes any rounding
Be sure to replace the src with your own image path and update the alt text
-->
<img class="avatar avatar--rounded" src="images/avatar.png" srcset="images/[email protected] 2x" alt="JustEdris">
<!-- Replace with your name or brand -->
<h1>
<div>JustEdris</div>
</h1>
<!-- Add a short description about yourself or your brand -->
<!-- <p>An open source DIY Linktree alternative.</p> -->
<!-- All your buttons go here -->
<div class="button-stack" role="navigation">
<!-- Generic Homepage -->
<a class="button button-default" href="https://justedris.de/" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/generic-homepage.svg" alt="Homepage Icon">JustEdris.de</a>
<!-- Twitch -->
<a class="button button-twitch" href="https://www.twitch.tv/justedris" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/twitch.svg" alt="Twitch Logo">Twitch</a>
<!-- Discord -->
<a class="button button-discord" href="https://www.justedris.de/discord" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/discord.svg" alt="Discord Logo">Discord</a>
<!-- Instagram -->
<a class="button button-instagram" href="https://instagram.com/justedris" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/instagram.svg" alt="Instagram Logo">Instagram</a>
<!-- YouTube -->
<a class="button button-yt" href="https://www.youtube.com/@JustEdris" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/youtube.svg" alt="YouTube Logo">YouTube</a>
<!-- Bluesky -->
<a class="button button-bluesky" href="https://bsky.app/profile/justedris.bsky.social" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/bluesky.svg" alt="Bluesky Logo">Bluesky</a>
<!-- Threads -->
<a class="button button-threads" href="https://www.threads.net/@justedris" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/threads.svg" alt="Threads Logo">Threads</a>
<!-- X -->
<a class="button button-x" href="https://twitter.com/justedris" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/x.svg" alt="X Logo">Follow on X</a>
<!-- TikTok -->
<a class="button button-tiktok" href="https://tiktok.com/@justedris" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/tiktok.svg" alt="TikTok Logo">TikTok</a>
<!-- Generic Email -->
<a class="button button-default" href="mailto:[email protected]" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/generic-email.svg" alt="Email Icon">Email Me</a>
</div>
<!-- Feel free to add your own footer information, including updating `privacy.html` to reflect how your LittleLink fork is set up -->
<footer>
<a href="https://justedris.de/datenschutz" target="_blank" rel="noopener">Datenschutz</a> | <a href="https://justedris.de/impressum" target="_blank" rel="noopener">Impressum</a>
</footer>
</div>
</div>
</body>
</html>