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

View File

@@ -0,0 +1,17 @@
{% macro footer(last_updated) %}
<style>
#footer {
color: rgb(149, 166, 180);
text-align: center;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin-top: 200px;
margin-bottom: 25px;
}
</style>
<div id="footer">
Made by Evan Scherrer -- Last updated {{ last_updated }} <br>
<i> No generative AI was used for the content of this website </i>
</div>
{%- endmacro %}