diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..eeaefd9
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,67 @@
+{% load static %}
+{% load crispy_forms_tags %}
+
+
+
+
+
+
+
+
+ {% block content %}
+ {% endblock content %}
+
+
+
+{% block post_content %}
+{% endblock post_content %}
+{% include 'components/footer.html' %}
+{% block extra_post_content %}
+{% endblock extra_post_content %}
+
+
+
+
+
+
+
+
+
+
+{% block extra_body_js %}
+{% endblock extra_body_js %}
+
+
diff --git a/templates/common.html b/templates/common.html
new file mode 100644
index 0000000..4c415dc
--- /dev/null
+++ b/templates/common.html
@@ -0,0 +1,40 @@
+{% extends 'base.html' %}
+{% load static %}
+{% load crispy_forms_tags %}
+
+{% block content %}
+
+
+ {% block right_common_content %}
+ {% endblock right_common_content %}
+
+{% endblock content %}