forked from elementary/blog-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
links.html
121 lines (112 loc) · 3.46 KB
/
links.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---
layout: default
redirect_from:
- /archive/
- /archive
- /archive/1/
- /archive/1
---
<h2 style="margin-left: 20px;">Links - My linktree!</h2>
<section class="links">
<h3>Recommended Contacts</h3>
<div class="gridSection">
<a class="gridItem" href="https://signal.me/#eu/I64dzQlN8kSc_QL9-QVDx6592LlG8kfGM1lBYWwxsXS6rBTfTINCjpVwwug_HmFs">
<img src="{{ site.baseurl }}/images/social/signal.svg" alt="Signal Icon">
<div class="details">
<h2>Signal</h2>
<p>
amyiscoolz.33
</p>
</div>
</a>
<a class="gridItem" href="https://matrix.to/#/@amyiscoolz:chat.atiusamy.com">
<img src="{{ site.baseurl }}/images/social/fluffychat.svg" alt="Matrix Icon">
<div class="details">
<h2>Matrix</h2>
<p>
@amyiscoolz:chat.atiusamy.com
</p>
</div>
</a>
</div>
<h3>Not-so Recommended Contacts</h3>
<div class="gridSection">
<a class="gridItem" href="https://instagram.com/amyiscoolz">
<img src="{{ site.baseurl }}/images/social/instagram.svg" alt="Instagram Icon">
<div class="details">
<h2>Instagram</h2>
<p>
amyiscoolz
</p>
</div>
</a>
<a class="gridItem" href="#">
<img src="{{ site.baseurl }}/images/social/discord.svg" alt="Discord Icon">
<div class="details">
<h2>Discord</h2>
<p>
atiusamy
</p>
</div>
</a>
<a class="gridItem" href="https://steamcommunity.com/id/AtiusAmy/">
<img src="{{ site.baseurl }}/images/social/steam.svg" alt="Steam Icon">
<div class="details">
<h2>Steam</h2>
<p>
AtiusAmy
</p>
</div>
</a>
</div>
<h3>My stuff</h3>
<div class="gridSection">
<a class="gridItem" href="https://www.youtube.com/@atius">
<img src="{{ site.baseurl }}/images/youtube.png" alt="YouTube Icon" style="background-color: white; padding: 5px">
<div class="details">
<h2>YouTube</h2>
<p>
Atius
</p>
</div>
</a>
<a class="gridItem" href="https://modrinth.com/user/AtiusAmy">
<img src="{{ site.baseurl }}/images/social/modrinth.svg" alt="Modrinth Icon" style="background-color: black; padding: 5px">
<div class="details">
<h2>Modrinth</h2>
<p>
AtiusAmy
</p>
</div>
</a>
<a class="gridItem" href="https://github.com/AtiusAmy">
<img src="{{ site.baseurl }}/images/social/github.svg" alt="GitHub Icon" style="background-color: white; padding: 5px">
<div class="details">
<h2>GitHub</h2>
<p>
AtiusAmy
</p>
</div>
</a>
</div>
<h3>Very attractive person</h3>
<div class="gridSection">
<a class="gridItem" href="https://winsdominoes.net">
<img src="{{ site.baseurl }}/images/social/winsdominoes.webp" alt="Win's Icon">
<div class="details">
<h2>Win's Website</h2>
<p>
winsdominoes.net
</p>
</div>
</a>
</div>
</section>
<nav class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Newer</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Older</a>
{% endif %}
</nav>