Compare commits

...

9 Commits

Author SHA1 Message Date
a74c54d63c increased padding on content slightly 2024-09-16 23:28:14 -07:00
3cabd6bb40 increased padding on body 2024-09-16 23:22:37 -07:00
c2e8ab4bbc fixed header css 2024-09-16 23:17:13 -07:00
c508e20157 updated css 2024-09-16 23:14:16 -07:00
e6015b56c2 added service 2024-09-16 23:10:16 -07:00
f0e9060901 updated main.fnl usage 2024-09-16 23:03:07 -07:00
d4fc5ce5ba updated default port 2024-09-16 23:02:15 -07:00
a543d7b52f added about page 2024-09-16 22:58:15 -07:00
e60781069e changed start-server a little 2024-09-16 22:57:49 -07:00
6 changed files with 236 additions and 194 deletions

View File

@ -1,7 +1,7 @@
(set _G.port 50625)
(set _G.port 16384)
(set _G.use-http false)
(local usage (: "Usage: %s [-h] [-p] [--use-http]
(local usage (: "Usage: %s [options]
Options:
-h, --help Show this help message and exit

13
bunbun.dev.service Normal file
View File

@ -0,0 +1,13 @@
[Unit]
Description=
After=network.target
[Service]
Type=simple
ExecStart=/home/bunbun/bunbun.dev/start-server -l
WorkingDirectory=/home/bunbun/bunbun.dev
Restart=on-failure
User=bunbun
[Install]
WantedBy=default.target

9
pages/about.md Normal file
View File

@ -0,0 +1,9 @@
### About Me
Hello, I'm Winter. If you're here you probably already know about me, if you don't here's a bit of info...
As I said previously my name is Winter, also known by my pseudonyms, Bunbun, and Brainless Bitch. I use she/her pronouns. I'm a self taught programmer with a passion for [Linux](https://en.wikipedia.org/wiki/Linux), programming, and general audio shenanigans. I work with [C](<https://en.wikipedia.org/wiki/C_(programming_language)>), [Lua](<https://en.wikipedia.org/wiki/Lua_(programming_language)>) and a variety of [Lisp](<https://en.wikipedia.org/wiki/Lisp_(programming_language)>) dialects.
### About the Website
This website is written in [Fennel](https://fennel-lang.org/) a Lisp dialect that compiles into Lua, [Markdown](https://en.wikipedia.org/wiki/Markdown), and a bit of [HTML](https://en.wikipedia.org/wiki/HTML) and [CSS](https://en.wikipedia.org/wiki/CSS).

View File

@ -1,11 +1,11 @@
#!/bin/bash
#!/usr/bin/env bash
command="./main.fnl"
kill_command="pkill -f 'main\.fnl'"
log_file="log"
usage="Usage: start-server [-h] [--localhost] [-l] [--log-file] [-k]
usage="Usage: start-server [options]
Options:
-h, --help Show this help message and exit
@ -34,4 +34,4 @@ for (( i=1; i<=$#; i++ )); do
done
$kill_command
eval "${command} & disown"
eval "${command}"

View File

@ -53,15 +53,17 @@ body {
box-sizing: border-box;
margin: 0;
background: var(--background);
padding: 1em;
padding: 2em;
min-height: 100vh;
color: var(--foreground);
font-family: var(--sans-serif-font);
}
body>header {
display: flex;
position: sticky;
top: 0;
justify-content: space-between;
margin-top: -1em;
border-bottom: 0.1em solid var(--accent-50);
background: var(--background);
@ -93,9 +95,23 @@ body>header>a {
}
}
body>header>nav {
display: flex;
align-items: center;
}
body>header>nav>a {
color: var(--foreground);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
body>.content {
flex: 1;
padding: 0.5em;
padding: 1em;
overflow-y: hidden;
}

View File

@ -1,22 +1,26 @@
<!doctype html>
<html>
<head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
</head>
<body>
<body>
<header>
<a href="https://bunbun.dev">bunbun.dev</a>
<nav>
<a href="https://bunbun.dev/about">About</a>
</nav>
</header>
<div class="content">
<main>%s</main>
</div>
<footer>
&copy; 2024 Winter Hille &mdash;
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en">BY-NC-SA 4.0</a>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
>BY-NC-SA 4.0</a
>
</footer>
</body>
</body>
</html>