From 5cfe3f8bb14c5464510736afcbe9cd5fe3263649 Mon Sep 17 00:00:00 2001 From: Vaibhav Date: Thu, 25 Jul 2024 17:06:12 +0530 Subject: [PATCH] blogs creation page --- templates/blog/home.html | 130 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 129 insertions(+), 1 deletion(-) diff --git a/templates/blog/home.html b/templates/blog/home.html index 85251740..458f4764 100644 --- a/templates/blog/home.html +++ b/templates/blog/home.html @@ -1 +1,129 @@ -Lets get started ! \ No newline at end of file +{% extends 'globals/base.html' %} +{% load static %} + +{% block title %} +Create Blog +{% endblock %} + +{% block css %} + +{% endblock %} + +{% block body %} +{% include 'globals/navbar.html' %} +{% include 'globals/theme.html' with heading='Create Blog' %} +
+
+ +
+ +
+
{% csrf_token%} + +
+
+ Write Your Own Blog !
+
+
+ +
+
+ + +
+ +
+ + +
+
+
+
+ + +
+ + +
+
+
+ + +
+ +
+ + +
+
+ +
+
+ +
+
+ +
+
+
+ + + +{% include 'globals/footer.html' %} + + +{% endblock %} \ No newline at end of file