Initial cleanup of the codebase

Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/app/templates/admin/index.html b/app/templates/admin/index.html
new file mode 100644
index 0000000..220d92f
--- /dev/null
+++ b/app/templates/admin/index.html
@@ -0,0 +1,20 @@
+{% extends 'admin/master.html' %}
+{% block body %}
+{{ super() }}
+<div class="row">
+<div class="span10 offset1">
+<h1>Flask-Admin example</h1>
+<p class="lead">
+Simple admin views, not related to models.
+</p>
+<p>
+This example shows how to add your own views to the admin interface. The views do not have to be associated
+to any of your models, and you can fill them with whatever content you want.
+</p>
+<p>
+By adding custom views to the admin interface, they become accessible through the <em>navbar</em> at the top.
+</p>
+<a class="btn btn-primary" href="/"><i class="icon-arrow-left icon-white"></i> Back</a>
+</div>
+</div>
+{% endblock body %}
\ No newline at end of file