Add base template without footer.

This commit is contained in:
Edward Betts 2018-11-22 16:36:21 +00:00
parent 87c7e99798
commit fd54af9812

View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Xanadu{% endblock %}</title>
<link href="https://fonts.googleapis.com/css?family=Neuton" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='bootstrap4/css/bootstrap.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% block style %}
{% endblock %}
</head>
<body>
{% include "navbar.html" %}
{% block content %}
{% endblock %}
<script src="{{ url_for('static', filename='jquery/jquery.js') }}"></script>
<script src="{{ url_for('static', filename='bootstrap4/js/bootstrap.js') }}"></script>
{% block scripts %}
{% endblock %}
</body>
</html>