This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
uwu-me/templates/index.html
2020-03-01 21:00:01 -06:00

24 lines
800 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="static/assets/favicon.png" />
<link rel="stylesheet" href="static/materialize/css/materialize.min.css" />
<script src="static/materialize/js/materialize.min.js"></script>
<link rel="stylesheet" type="text/css" href="{{ static_paths[0] }}" />
<script type="text/javascript" src="{{ static_paths[1] }}"></script>
</head>
<body class="grey darken-4">
<title>UwU Me!{{ optional_title_status }}</title>
<div class="container">
<a href="/">
<div class="card-panel grey darken-3">
<header>
{% block header %}{% endblock %}
</header>
</div>
</a>
{% block content %}{% endblock %}
</div>
</body>
</html>