41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>xunuwu</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="shortcut icon" href="data:," />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>xunuwu</h1>
|
|
</header>
|
|
<main>
|
|
<hr>
|
|
<p>
|
|
hi im xun 😼
|
|
<br>
|
|
i code and play video games sometimes (mostly roblox and fps games)
|
|
</p>
|
|
<div id="link-section">
|
|
<section>
|
|
<h2>socials</h2>
|
|
<ul>
|
|
{% for item in socials %}
|
|
<li><a href="{{ item.link }}" target="_blank" {% if item.handle %} title="{{ item.handle }}" {% endif %} rel="noopener noreferrer">{{ item.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h2>services</h2>
|
|
<ul>
|
|
{% for item in exposed_services %}
|
|
<li><a href="{{ item.link }}" target="_blank" {% if item.handle %} title="{{ item.handle }}" {% endif %} rel="noopener noreferrer">{{ item.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|