From e1962c7b66dd6b35cb3cb4e21bf2b95dbbcc2453 Mon Sep 17 00:00:00 2001
From: spikecodes <19519553+spikecodes@users.noreply.github.com>
Date: Tue, 8 Dec 2020 09:58:36 -0800
Subject: [PATCH] Fix Header
---
templates/base.html | 4 ++--
templates/subreddit.html | 6 ------
templates/user.html | 6 ------
3 files changed, 2 insertions(+), 14 deletions(-)
diff --git a/templates/base.html b/templates/base.html
index 10bacf9..cce9d3c 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -18,14 +18,14 @@
{% endblock %}
- {% block body %}
{% block header %}
{% endblock %}
-
+
+ {% block body %}
{% block content %}
{% endblock %}
diff --git a/templates/subreddit.html b/templates/subreddit.html
index 2f93ba3..36045e1 100644
--- a/templates/subreddit.html
+++ b/templates/subreddit.html
@@ -1,12 +1,6 @@
{% extends "base.html" %}
{% block title %}r/{{ sub.name }}: {{ sub.description }}{% endblock %}
{% block body %}
- {% block header %}
-
- {% endblock %}
diff --git a/templates/user.html b/templates/user.html
index afa534e..654a45e 100644
--- a/templates/user.html
+++ b/templates/user.html
@@ -1,12 +1,6 @@
{% extends "base.html" %}
{% block title %}Libreddit: u/{{ user.name }}{% endblock %}
{% block body %}
- {% block header %}
-
- {% endblock %}