diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/about.rs.html | 43 | ||||
-rw-r--r-- | templates/index.rs.html | 14 |
2 files changed, 56 insertions, 1 deletions
diff --git a/templates/about.rs.html b/templates/about.rs.html new file mode 100644 index 0000000..95fb994 --- /dev/null +++ b/templates/about.rs.html @@ -0,0 +1,43 @@ +@use super::{header_html, footer_html}; + +@() + +@:header_html(None, None) + +<h1>Contact</h1> + +<div class="two-column"> + <div class="inner-column"> + <h3>Email</h3> + <p>The best way to reach me is via email: [my name] [at] [this site]. I + try to respond as soon as I can but please understand that I am a + college student who is also busy with maintaining her own systems that + other people depend on.</p> + </div> + <div class="inner-column"> + <h3>Social Media</h3> + <ul> + <li>Mastodon: <a + href="https://lgbt.io/@@muirrum">muirrum@@lgbt.io</a></li> + <li>GitHub: <a href="https://github.com/Muirrum">Muirrum</a></li> + <li>SourceHut: <a href="https://sr.ht/~muirrum">~muirrum</a></li> + <li>Personal Gitea: <a + href="https://git.carathe.dev/muirrum">muirrum</a></li> + </div> +</div> + +<h1>Selected Projects</h1> +<div class="two-column"> + <div class="inner-column"> + <h3>Campmaster-Constantine (Discontinued)</h3> + <p>Discord bot written in Rust, then Python. Discontinued after + discord.py was retired.</p> + </div> + <div class="inner-column"> + <h3>WG-Manager</h3> + <p>Enables automatic provisioning of new peers across a Wireguard + network based on a management server.</p> + </div> +</div> + +@:footer_html() diff --git a/templates/index.rs.html b/templates/index.rs.html index cc597de..31ed504 100644 --- a/templates/index.rs.html +++ b/templates/index.rs.html @@ -28,7 +28,19 @@ Among other things. <br/><br/> I am currently pursuing a Bachelors degree in Computer Science at - Worcester Polytechnic Institute. + Worcester Polytechnic Institute.<br/><br/> + + My past projects are, in no particular order: + <ul> + <li><a href="https://sr.ht/~muirrum/wg-manager">WG-manager</li> + <li><a + href="https://sr.ht/~muirrum/Campmaster-Constantine">Campmaster + Constantine</a> + </li> + <li><a + href="https://sr.ht/~muirrum/gompei-verification/">Gompei-Verification</a></li> + <li><a href="https://github.com/WPI-LNL/LNLDB">LNL DB</a></li> + </ul> </div> <div class="inner-column"> |