Skip to content

Commit 33dd152

Browse files
authored
Merge pull request #242 from honeylogic-io/fix-blog-pages
fix: Blog pages
2 parents f62787b + 8b42e52 commit 33dd152

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

django_wtf/templates/core/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% load tailwind_tags django_htmx %}
22
<!DOCTYPE html>
3-
<html lang="en-US" data-theme="dark">
3+
<html lang="en-US">
44
<head>
55
{% block head %}
66
{% include "meta/meta.html" %}

django_wtf/templates/wagtail_code_blog/blog_index_page.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{% extends "core/base.html" %}
22
{% load static %}
33
{% block head %}
4-
{% include "wagtail_code_blog/blog_index_page_head.html" %}
54
{{ block.super }}
6-
{{ tailwind_css }}
5+
{% include "wagtail_code_blog/blog_index_page_head.html" %}
76
<style>
87
h3,
98
h4,

django_wtf/templates/wagtail_code_blog/blog_page.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
{% load tailwind_tags %}
33
{% load wagtailcore_tags wagtailimages_tags %}
44
{% block head %}
5-
{% include "wagtail_code_blog/blog_page_head.html" %}
65
{{ block.super }}
7-
{{ tailwind_css }}
6+
{% include "wagtail_code_blog/blog_page_head.html" %}
87
{% endblock head %}
98
{% block content %}
109
<div class="flex w-full justify-center bg-white pb-5 md:pb-7 md:pt-7">

0 commit comments

Comments
 (0)