diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 70 |
1 files changed, 25 insertions, 45 deletions
@@ -6,54 +6,34 @@ <link rel="stylesheet" href="style.css"> </head> <body> - <div class="page-body-border"><div class="page-body"> - <h1 class="page-body-top">Jon Santmyer's Website</h1> - <div class="page-body-content"> - <table class="page-body-buttons" style="width: 20%; margin: 0px;"> - <tr><td><div class="link-button-border"><a class="link-button" href="https://git.jonsantmyer.com">Git Server</a></div></td></tr> - </table> + <div class="window"> + <div class="window-title"><h2 style="padding: 0px; margin: 0px;">Jon Santmyer Dot Com</h2></div> + <div class="window-content"> + <p>This website is intended to hold documentation information about some of the projects I've been working on for the past few years. Feel free to look around.</p> + <p>I work on small libraries and system utilites for fun, with the occasional half-baked game idea</p> + <p>If you want to look at any of them, use the git server link below, or check out the project-specific pages below.</p> + </div> + <div class="window-seperator"></div> + <div class="window-content" style="text-align: center"> + <a class="link-button" href="https://git.jonsantmyer.com">Git Server</a> + <a class="link-button" href="https://git.jonsantmyer.com/website">Site Source</a> + </div> + <div class="window-content"> <p> - This site is designed to be simple and a love letter to early UI design. - I'm not a big fan of round buttons or colorful images, so a beige - background is all that I'm willing to decorate. I hope you like the - buttons and other text elements. + I use + <a href="https://nixos.org/">NixOS</a> + on all my systems with + <a href="https://git.jonsantmyer.com/nix-config">this</a> + config </p> - </div> - <p class="text-inset"> - I use - <img src="img/artix.png" style="max-height:16px"> - <a href="https://artixlinux.org/">Artix</a> - on my main system and laptop - </p> - </div></div> + </div> + </div> - <div class="page-body-border"><div class="page-body"> - <h2 class="page-body-top">Projects</h2> - <div class="page-body-content"> - <table class="page-body-buttons" style="width: 100%;"> - <tr> - <td> - <div class="link-button-border"><a class="link-button" href="/diheap"> - <h3>Drop-in Heap</h3> - <p> - A simple dynamic memory allocator that uses reserved memory regions. - Written in C with minimal dependencies (memset, stdint, stddef). - </p> - </a></div> - </td> - <td> - <div class="link-button-border"><a class="link-button" href="/vex"> - <h3>Vex (Multi-dimension vectors)</h3> - <p> - An interface to create and manipulate multi-dimensional vectors. - Includes conversions for polar and cartesian coordinates. - Written for C++20 - </p> - </a></div> - </td> - </table> + <div class="window"> + <div class="window-title"><h2 style="padding: 0px; margin: 0px;">Projects</h2></div> + <div class="window-content"> + </div> - <p class="text-inset">Summary pages for things that I put on my git server</p> - </div></div> + </div> </body> </html> |