-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (133 loc) · 5.59 KB
/
index.html
File metadata and controls
133 lines (133 loc) · 5.59 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
<!DOCTYPE html>
<html class="h-100" lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Homepage of Subaru ad Astra (Mirai)</title>
<link href="assets/icons.css" rel="stylesheet" />
<link href="assets/bootstrap.min.css" rel="stylesheet" />
<link href="assets/header.css" rel="stylesheet" />
<link rel="icon" href="assets/icons/adastra.ico" type="image/x-icon">
<style>
.card img {
max-width: 100%;
}
@font-face {
font-family: CL;
src: url(assets/cl.woff2);
font-display: swap;
}
footer {
font-family: CL, var(--bs-font-sans-serif);
}
</style>
</head>
<body class="d-flex flex-column h-100">
<header class="header">
<div class="container navbar d-flex">
<nav class="justify-content-start" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item active">English</li>
<li class="breadcrumb-item"><a href="wuu.html">上海閒話 (Zaon-he-ħe-ħo)</a></li>
<li class="breadcrumb-item"><a href="zh.html">標準官話</a></li>
<li class="breadcrumb-item"><a href="et.html">Eesti keel</a></li>
</ol>
</nav>
</div>
</header>
<div class="flag trans"></div>
<p></p>
<main class="flex-shrink-0">
<div class="container d-grid gap-3">
<div class="container-fluid d-flex justify-content-center">
<div class="list-group list-group-horizontal">
<a class="list-group-item" href="https://blog.subaru.adastra.name/">Blog</a>
<a class="list-group-item" href="https://wuu.wikipedia.org/wiki/User:%E3%82%AF%E3%83%95%E3%82%A3"
>Wu Wikipedia</a>
</div>
</div>
</div>
<div class="container d-grid gap-3">
<div class="container-fluid d-flex justify-content-center">
<div class="card" style="position: relative; margin-top: 80px">
<img
src="assets/images/profile.jpg"
style="
height: 100px;
width: 100x;
position: absolute;
top: -50px;
left: 30px;
border-radius: 50%;
border: 1px solid #ddd;
"
/>
<div class="card-body">
<h2 class="card-title" style="margin-left: 130px">
Subaru ad Astra (Mirai)
</h2>
<h6 style="display:inline;"><i class="ico ico-location" role="img"></i>Helsinki / Zaonhe / Soutseu</h6>
<div style="font-size: 1.5em">
<a href="https://github.com/subarupan"><i class="ico ico-github"></i></a>
<a href="mailto:subaru@adastra.name"><i class="ico ico-mail"></i></a>
<a href="https://twitter.com/sxbxrxrxrx"><i class="ico ico-twitter"></i></a>
<a href="https://t.me/subaruphoe"><i class="ico ico-telegram"></i></a>
<a href="https://www.instagram.com/subaru_qnq/"><i class="ico ico-instagram"></i></a>
<a href="https://space.bilibili.com/456015287"><i class="ico ico-bilibili"></i></a>
</div>
<p>Hi, here's Subaru from La familia ad Astra.</p>
<p>
<i class="ico ico-nonbi" role="img"></i>
<i class="ico ico-trans" role="img"></i>
Non-binary & trans pride.
</p>
<p>
<i class="ico ico-neurodiversity" role="img"></i>
<a style="text-decoration:none" href="https://en.wikipedia.org/wiki/Neurodiversity">Neurodivergent</a> (kinetic+autistic).
</p>
<p>
Native speaker of the
<a style="text-decoration:none" href="https://en.wikipedia.org/wiki/Shanghainese">Zaonhe language</a>.
</p>
<p>
Administrator of
<a style="text-decoration:none" href="https://wuu.wikipedia.org/wiki/%E5%B0%81%E9%9D%A2">Wu language Wikipedia</a>, also the youngest admin among all Wikipedias.
</p>
<p>
<i class="ico ico-ish" role="img"></i>
<a style="text-decoration:none" href="https://en.wikipedia.org/wiki/International_School_of_Helsinki">International school</a> student in Finland.
</p>
<p>
<i class="ico ico-illustrator" role="img"></i>
<i class="ico ico-lang" role="img"></i>
<i class="ico ico-gender" role="img"></i>
Graphic design, linguistics, gender studies, philosophy and many other stuff.
</p>
<p>
<i class="ico ico-macos" role="img"></i>
MacOS / Asahi Linux user.
</p>
</div>
</div>
</div>
</main>
<footer class="footer mt-auto py-3 bg-light">
<div class="container">
<span class="text-muted">
🄯<span id="year"></span> Subaru
<a style="text-decoration:none" href="sõbrad.html">Friends</a>
<br />
<a href="https://icp.gov.moe/?keyword=20230825" target="_blank">Moe ICP No.20230825</a>
<br />
<a href="https://adastra.name/">
<img src="assets/ad-astra-es-web.svg" style="height: 3em"/>
</a>
</span>
</div>
</footer>
<script src="assets/bootstrap.bundle.min.js"></script>
</body>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</html>