diff --git a/video_metadata/templates/base.html b/video_metadata/templates/base.html
index 1a9ecb3..a38eaf1 100644
--- a/video_metadata/templates/base.html
+++ b/video_metadata/templates/base.html
@@ -10,7 +10,6 @@
pvdb
diff --git a/video_metadata/templates/file_listing/index.html b/video_metadata/templates/file_listing/index.html
deleted file mode 100644
index 75dec7e..0000000
--- a/video_metadata/templates/file_listing/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{% extends 'base.html' %}
-
-{% block header %}
- {% block title %}File Listing{% endblock %}
-{% endblock %}
-
-{% block content %}
-
- {% for path in paths recursive %}
- -
- {% if path.is_dir %}
- {{ path.base_name }}
- {% else %}
-
- {{ path.base_name }}
- {% endif %}
- {% if path.contents %}
-
{{ loop(path.contents) }}
- {% endif %}
-
- {% endfor %}
-
-{% endblock %}
diff --git a/video_metadata/views/file_listing.py b/video_metadata/views/file_listing.py
index 0729e58..af3433c 100644
--- a/video_metadata/views/file_listing.py
+++ b/video_metadata/views/file_listing.py
@@ -23,24 +23,6 @@ class path_entry:
contents = []
-@bp.route('/')
-def index():
- # construct tree of path_entry objects
- video_path = current_app.config['MOVIE_DIR']
- paths = []
-
- for entry in os.scandir(video_path):
- p = getPathInfo(entry)
- if p:
- paths.append(p)
-
- return render_template(
- 'file_listing/index.html',
- paths=paths,
- debug_str=util.dumpObject(paths)
- )
-
-
@bp.route('/folder_contents/')
def getBaseFolderContents():
full_path = current_app.config['MOVIE_DIR']