psyche / templates /base.html
younesStrittmatter's picture
Add hugging face space setup
d665fdc
Raw
History Blame Contribute Delete
620 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% block title %}PSYCHE{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
</head>
<body>
<header class="site">
<h1>PSYCHE</h1>
<nav>
<a href="{{ url_for('landing') }}">Home</a>
<a href="{{ url_for('analysis') }}">Analysis</a>
<a href="{{ url_for('replay') }}">Replay</a>
</nav>
</header>
<main>{% block body %}{% endblock %}</main>
</body>
</html>