Files
runnerspace/templates/layouts/base.html
2022-03-26 19:04:52 -05:00

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>