From fd54af9812386a7127375de66795b1c99566b523 Mon Sep 17 00:00:00 2001 From: Edward Betts <edward@4angle.com> Date: Thu, 22 Nov 2018 16:36:21 +0000 Subject: [PATCH] Add base template without footer. --- sourcing/templates/base_plain.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 sourcing/templates/base_plain.html diff --git a/sourcing/templates/base_plain.html b/sourcing/templates/base_plain.html new file mode 100644 index 0000000..307f7d8 --- /dev/null +++ b/sourcing/templates/base_plain.html @@ -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>