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>