mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-15 06:13:07 -06:00
Basic frontend layouts
This commit is contained in:
17
templates/layouts/base.html
Normal file
17
templates/layouts/base.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user