migrate app from svelte

This commit is contained in:
2025-12-26 13:01:37 -06:00
commit 99d68bd5fb
29 changed files with 590 additions and 0 deletions

22
templates/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Evan Scherrer - Home</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" />
<style>
mark {
background-color: rgb(8, 144, 207)
}
</style>
{% from 'components/footer.html' import footer %}
</head>
<body>
<div class="main-panel">
<h1><mark>Hey, I'm Evan.</mark> Thanks for stopping by.</h1>
<p>I'm currently a fourth-year student at Drake University studying Computer Science and Artificial Intelligence. I'm particularly interested in sustainable computing, especially at the consumer level. I also enjoy applying programming to the physical world using microcontrollers and other electronics.</p>
<p>If you're interested, you can read more <a href="/about">about me</a>. To look at some of my previous projects, you can check out <a href="/portfolio">my portfolio</a>. For business inquiries (or just to say hi!) you can find my contact info <a href="/contact">here</a>. If you're interested in some of my personal musings, feel free to read through <a href="/blog">my blog</a>.</p>
</div>
{{ footer("December 2025") }}
</body>
</html>