This commit is contained in:
xunuwu 2025-05-20 02:07:38 +02:00
commit 481a2a665d
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
4 changed files with 107 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/_site

37
bundle.css Normal file
View file

@ -0,0 +1,37 @@
:root {
color-scheme: light dark;
}
body {
font-family: sans-serif;
margin: auto;
max-width: 90vw;
}
ul {
list-style: none;
padding: 0;
}
li {
font-size: 120%;
margin-bottom: 10px;
box-sizing: border-box;
}
li a {
text-decoration: none;
}
li a:hover {
text-decoration: underline;
}
#link-section {
display: flex;
flex-wrap: wrap;
}
#link-section section {
padding-inline-end: 5vw;
}

7
eleventy.config.js Normal file
View file

@ -0,0 +1,7 @@
export default function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("bundle.css");
eleventyConfig.addWatchTarget("bundle.css");
eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
}

62
index.html Normal file
View file

@ -0,0 +1,62 @@
---
socials:
discord: "https://discord.com/users/821827926504112129"
bluesky: "https://bsky.app/profile/owoxun.bsky.social"
roblox: "https://www.roblox.com/users/149009823"
last.fm: "https://www.last.fm/user/xunuwu"
github: "https://github.com/xunuwu"
steam: "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 link in socials %}
<li><a href="{{ link[1] }}" target="_blank" rel="noopener noreferrer">{{ link[0] }}</a></li>
{% endfor %}
</ul>
</section>
</div>
</main>
</body>
</html>