18 lines
519 B
HTML
18 lines
519 B
HTML
{% 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 %}
|
|
|