74 lines
2.2 KiB
HTML
74 lines
2.2 KiB
HTML
---
|
|
socials:
|
|
- name: discord
|
|
handle: "@xunuwu"
|
|
link: "https://discord.com/users/821827926504112129"
|
|
- name: bluesky
|
|
handle: owoxun.bsky.social
|
|
link: "https://bsky.app/profile/owoxun.bsky.social"
|
|
- name: roblox
|
|
handle: "@xunuwu"
|
|
link: "https://www.roblox.com/users/149009823"
|
|
- name: last.fm
|
|
handle: xunuwu
|
|
link: "https://www.last.fm/user/xunuwu"
|
|
- name: github
|
|
handle: xunuwu
|
|
link: "https://github.com/xunuwu"
|
|
- name: steam
|
|
handle: xunuwu
|
|
link: "https://steamcommunity.com/id/xunuwu/"
|
|
|
|
# info field is optional, title and link are mandatory
|
|
projects:
|
|
- title: nixos config
|
|
info: configuration files for all my nixos computers
|
|
link: https://github.com/xunuwu/nixos-config
|
|
- title: waymouse
|
|
info: a cli utility for simulating mouse inputs on wayland
|
|
link: https://github.com/xunuwu/waymouse
|
|
---
|
|
<!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="/bundle.css">
|
|
</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>projects</h2>
|
|
<ul>
|
|
{% for item in projects %}
|
|
<li>
|
|
<a href="{{ item.link }}" {% if item.info %} title="{{ item.info }}" {% endif %} target="_blank" rel="noopener noreferrer">
|
|
{{ item.title }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</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>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|