mirror of
https://codeberg.org/bunbun/bunbun.dev
synced 2025-01-22 04:34:29 -08:00
added about page
This commit is contained in:
parent
e60781069e
commit
a543d7b52f
9
pages/about.md
Normal file
9
pages/about.md
Normal 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).
|
@ -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>
|
||||
© 2024 Winter Hille —
|
||||
<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>
|
||||
|
Loading…
Reference in New Issue
Block a user