Skip to content

Commit

Permalink
fix: Blog pages
Browse files Browse the repository at this point in the history
  • Loading branch information
adinhodovic committed Jun 1, 2024
1 parent f62787b commit 8b42e52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion django_wtf/templates/core/base.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% load tailwind_tags django_htmx %}
<!DOCTYPE html>
<html lang="en-US" data-theme="dark">
<html lang="en-US">
<head>
{% block head %}
{% include "meta/meta.html" %}
Expand Down
3 changes: 1 addition & 2 deletions django_wtf/templates/wagtail_code_blog/blog_index_page.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{% extends "core/base.html" %}
{% load static %}
{% block head %}
{% include "wagtail_code_blog/blog_index_page_head.html" %}
{{ block.super }}
{{ tailwind_css }}
{% include "wagtail_code_blog/blog_index_page_head.html" %}
<style>
h3,
h4,
Expand Down
3 changes: 1 addition & 2 deletions django_wtf/templates/wagtail_code_blog/blog_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
{% load tailwind_tags %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block head %}
{% include "wagtail_code_blog/blog_page_head.html" %}
{{ block.super }}
{{ tailwind_css }}
{% include "wagtail_code_blog/blog_page_head.html" %}
{% endblock head %}
{% block content %}
<div class="flex w-full justify-center bg-white pb-5 md:pb-7 md:pt-7">
Expand Down

0 comments on commit 8b42e52

Please sign in to comment.