From 1fb3d381e832d5c5871c6cb2fd8b2c1ae3dbd029 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Thu, 20 Feb 2020 12:58:59 +0530 Subject: Add user registration, login and abstract submission interfaces --- arduino_blog/templates/index.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 arduino_blog/templates/index.html (limited to 'arduino_blog/templates/index.html') diff --git a/arduino_blog/templates/index.html b/arduino_blog/templates/index.html new file mode 100644 index 0000000..cc7f0ab --- /dev/null +++ b/arduino_blog/templates/index.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} +{% load static %} + {% block content %} + {% include 'home.html' %} + {% endblock %} \ No newline at end of file -- cgit