mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-15 06:13:07 -06:00
18 lines
483 B
HTML
18 lines
483 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Runnerspace</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
{% include 'layouts/header.html' %}
|
|
{% block content %}
|
|
Do not extend <strong>base.html</strong> directly.
|
|
{% endblock content %}
|
|
{% include 'layouts/footer.html' %}
|
|
</div>
|
|
</body>
|
|
</html>
|