diff --git a/breccia_mapper/templates/export.html b/breccia_mapper/templates/export.html
new file mode 100644
index 0000000..c552ced
--- /dev/null
+++ b/breccia_mapper/templates/export.html
@@ -0,0 +1,43 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
+
+
+
+
+
+ | Type |
+ Records |
+ |
+
+
+
+
+
+ | People |
+ |
+
+ Export
+ |
+
+
+
+ | Relationships |
+ |
+
+ Export
+ |
+
+
+
+
+
+{% endblock %}
diff --git a/breccia_mapper/urls.py b/breccia_mapper/urls.py
index e5f431b..b8ed941 100644
--- a/breccia_mapper/urls.py
+++ b/breccia_mapper/urls.py
@@ -28,6 +28,10 @@ urlpatterns = [
views.IndexView.as_view(),
name='index'),
+ path('export',
+ views.ExportListView.as_view(),
+ name='export'),
+
path('',
include('people.urls')),
diff --git a/breccia_mapper/views.py b/breccia_mapper/views.py
index 2844b2c..33ed8cd 100644
--- a/breccia_mapper/views.py
+++ b/breccia_mapper/views.py
@@ -3,3 +3,7 @@ from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = 'index.html'
+
+
+class ExportListView(TemplateView):
+ template_name = 'export.html'