diff --git a/uncloud/templates/uncloud/index.html b/uncloud/templates/uncloud/index.html
new file mode 100644
index 0000000..b40c3b4
--- /dev/null
+++ b/uncloud/templates/uncloud/index.html
@@ -0,0 +1,15 @@
+{% extends 'uncloud/base.html' %}
+{% block title %}{% endblock %}
+
+{% block body %}
+
+
Welcome to uncloud
+ Welcome to uncloud, checkout the following locations:
+
+
+
+
+{% endblock %}
diff --git a/uncloud/views.py b/uncloud/views.py
new file mode 100644
index 0000000..198abd0
--- /dev/null
+++ b/uncloud/views.py
@@ -0,0 +1,4 @@
+from django.views.generic.base import TemplateView
+
+class UncloudIndex(TemplateView):
+ template_name = "uncloud/index.html"