diff --git a/backend/templates/base.html b/backend/templates/base.html deleted file mode 100644 index 1f6eeb7..0000000 --- a/backend/templates/base.html +++ /dev/null @@ -1,34 +0,0 @@ -{% load cms_tags menu_tags sekizai_tags static i18n %}{% spaceless %} - - - - - - {% block meta %} - - - - - {% endblock meta %} - {% block canonical_url %} - - - {% endblock canonical_url %} - {% block fb_meta %}{% endblock fb_meta %} - {% block title %}{% page_attribute "page_title" %}{% endblock %} - {% block base_css %}{% endblock %} -{% endspaceless %}{% render_block 'css' %}{% spaceless %} - {% block page_head %}{% endblock %} - - -{% endspaceless %}{% cms_toolbar %}{% spaceless %} - {% block navbar %}{% endblock %} - {% block content %} - {% placeholder "Content" %} - {% endblock content %} - {% block base_js %}{% endblock %} -{% endspaceless %}{% render_block 'js' %}{% spaceless %} - {% block end_js %}{% endblock %} - {% block bottom_css %}{% endblock %} - - {% endspaceless %} diff --git a/backend/templates/base2.html b/backend/templates/base2.html deleted file mode 100644 index 145444b..0000000 --- a/backend/templates/base2.html +++ /dev/null @@ -1,34 +0,0 @@ -{% load cms_tags menu_tags sekizai_tags static i18n %}{% spaceless %} - - - - - - {% block meta %} - - - - - {% endblock meta %} - {% block canonical_url %} - - - {% endblock canonical_url %} - {% block fb_meta %}{% endblock fb_meta %} - {% block title %}{% page_attribute "page_title" %}{% endblock %} - {% block base_css %}{% endblock %} -{% endspaceless %}{% render_block 'css' %}{% spaceless %} - {% block page_head %}{% endblock %} - - -{% endspaceless %}{% cms_toolbar %}{% spaceless %} - {% block navbar %}{% endblock %} - {% block content %} - {% placeholder "Content" %} - {% endblock content %} - {% block base_js %}{% endblock %} -{% endspaceless %}{% render_block 'js' %}{% spaceless %} - {% block end_js %}{% endblock %} - {% block bottom_css %}{% endblock %} - - {% endspaceless %} \ No newline at end of file diff --git a/backend/templates/bootstrap5.html b/backend/templates/bootstrap5.html deleted file mode 100644 index 9174647..0000000 --- a/backend/templates/bootstrap5.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "base.html" %}{% load cms_tags menu_tags %} -{% block base_css %} - -{% endblock %} -{% block base_js %} - -{% endblock %} -{% block navbar %} - -{% endblock %} diff --git a/backend/templates/minimal.html b/backend/templates/minimal.html deleted file mode 100644 index 6cf5bea..0000000 --- a/backend/templates/minimal.html +++ /dev/null @@ -1,12 +0,0 @@ -{% load cms_tags sekizai_tags %} - - - {% page_attribute "page_title" %} - {% render_block "css" %} - - - {% cms_toolbar %} - {% placeholder "Minimal content" %} - {% render_block "js" %} - - diff --git a/backend/templates/whitenoise-static-files-demo.html b/backend/templates/whitenoise-static-files-demo.html deleted file mode 100644 index 39cccfb..0000000 --- a/backend/templates/whitenoise-static-files-demo.html +++ /dev/null @@ -1,15 +0,0 @@ -{% load cms_tags sekizai_tags static %} - - - {% page_attribute "page_title" %} - {% render_block "css" %} - - - {% cms_toolbar %} - - - - {% placeholder "Content" %} - {% render_block "js" %} - - diff --git a/cms_theme/migrations/0007_delete_featurehanging_and_more.py b/cms_theme/migrations/0007_delete_featurehanging_and_more.py new file mode 100644 index 0000000..e038a17 --- /dev/null +++ b/cms_theme/migrations/0007_delete_featurehanging_and_more.py @@ -0,0 +1,24 @@ +# Generated by Django 5.2.6 on 2026-03-11 15:50 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('cms_theme', '0006_benefitscard_benefitspanel_carouselitem_and_more'), + ] + + operations = [ + migrations.DeleteModel( + name='FeatureHanging', + ), + migrations.AlterModelOptions( + name='container1coltext', + options={'managed': False, 'verbose_name': 'Single Column'}, + ), + migrations.AlterModelOptions( + name='containerwithgrid', + options={'managed': False, 'verbose_name': 'Grid Section'}, + ), + ] diff --git a/cms_theme/templates/cms_theme/cms_components/visual_image_with_heading.html b/cms_theme/templates/cms_theme/cms_components/visual_image_with_heading.html deleted file mode 100644 index 124a1ed..0000000 --- a/cms_theme/templates/cms_theme/cms_components/visual_image_with_heading.html +++ /dev/null @@ -1,25 +0,0 @@ -{% load frontend cms_component djangocms_link_tags sekizai_tags icon_tags %} - -{% cms_component "FeatureHanging" name=_("Feature hanging") module=_("Examples") mixins="Background|Spacing|Attributes"|split %} -{% field "title" forms.CharField required=True label=_("Title") initial=_("Featured title") %} -{% field "description" HTMLFormField required=True label=_("Description") initial=_("

Paragraph of text beneath the heading to explain the heading. We'll add onto it with another sentence and probably just keep going until we run out of words.

") %} -{% field "image" ImageFormField required=False label=_("Image") %} -{% field "call_to_action" forms.CharField required=True label=_("Call to action") initial=_("Talk to sales") %} -{% field "link" LinkFormField required=True label=_("Link") initial="#"|to_link %} - -
-
-
-

{% inline_field "title" %}

-
{% inline_field instance "description" "" "safe" %}

- - {{ call_to_action }} - -
- -
-
\ No newline at end of file