Browse Source

Update references to bootstrap 4 in the docs

Vince Salvino 2 years ago
parent
commit
2b50ac0137

+ 8 - 9
README.md

@@ -20,23 +20,22 @@ Wagtail and Bootstrap.
 
 ## What is Wagtail CRX?
 
-Formerly known as CodeRed CMS, Wagtail CRX (CodeRed Extensions),
-provides a large set of enhancements and pre-built components for Wagtail which
-are ready to use out-of-the box! This saves development time and avoids
-"re-inventing the wheel" by providing features commonly needed by websites:
+CRX, formerly known as CodeRed CMS, provides a large set of enhancements and
+pre-built components for Wagtail which are ready to use out-of-the box! This
+saves development time and avoids "re-inventing the wheel" by providing features
+commonly needed by websites:
 
-* Streamfield blocks and templates for Bootstrap 4: rows, columns, hero units,
-  carousels, buttons, modals, cards, and more!
+* Streamfield blocks and page templates for Bootstrap 5: rows, columns, hero
+  units, carousels, buttons, modals, cards, and more!
 
 * Settings for adding logo, navigation, footer, and other common elements.
 
 * Rich set of SEO tagging attributes on each page.
 
-* Configurable Google Analytics tracking.
+* Configurable Google Analytics and other tracking.
 
 * Robust form builder including the ability for multi-step forms, conditional
-  logic, customized confirmation emails, MailChimp integration, and more (all
-  from within the streamfield!)
+  logic, customized confirmation emails, MailChimp integration, and more.
 
 * Article pages for building blogs, news, etc.
 

+ 1 - 1
coderedcms/templatetags/coderedcms_tags.py

@@ -176,7 +176,7 @@ def render_iframe_from_embed(embed):
 @register.filter
 def map_to_bootstrap_alert(message_tag):
     """
-    Converts a message level to a bootstrap 4 alert class
+    Converts a message level to a Bootstrap 5 alert class
     """
     message_to_alert_dict = {
         "debug": "primary",

+ 1 - 1
docs/getting_started/customize_design.rst

@@ -51,7 +51,7 @@ Custom CSS
 A Django app called ``website`` has been created to hold your custom changes. In website/static/
 there are custom.css and custom.js files that get loaded on every page by default. Adding
 anything to these files will automatically populate on the site and override any default styles.
-By default, Bootstrap 4 and jQuery are already included on the site.
+By default, Bootstrap 5 is already included on the site.
 
 .. note::
     You can also use Bootstrap color and utility classes in the **Custom CSS** fields on your pages in CMS.

+ 10 - 12
docs/index.rst

@@ -1,26 +1,24 @@
-Wagtail CRX Documentation
-=========================
+Wagtail CRX (CodeRed Extensions)
+================================
 
 `Official website <https://www.coderedcorp.com/cms/>`_ | `Source code on GitHub <https://github.com/coderedcorp/coderedcms>`_
 
-Formerly known as CodeRed CMS, Wagtail CRX (short for Wagtail + CodeRed
-Extensions), provides a large set of enhancements and pre-built components for
-Wagtail which are ready to use out-of-the box. This saves development time and
-avoids "re-inventing the wheel" by providing features commonly needed by
-websites:
+CRX, formerly known as CodeRed CMS, provides a large set of enhancements and
+pre-built components for Wagtail which are ready to use out-of-the box! This
+saves development time and avoids "re-inventing the wheel" by providing features
+commonly needed by websites:
 
-* Streamfield blocks and templates for Bootstrap 4: rows, columns, hero units,
-  carousels, buttons, modals, cards, and more!
+* Streamfield blocks and page templates for Bootstrap 5: rows, columns, hero
+  units, carousels, buttons, modals, cards, and more!
 
 * Settings for adding logo, navigation, footer, and other common elements.
 
 * Rich set of SEO tagging attributes on each page.
 
-* Configurable Google Analytics tracking.
+* Configurable Google Analytics and other tracking.
 
 * Robust form builder including the ability for multi-step forms, conditional
-  logic, customized confirmation emails, MailChimp integration, and more (all
-  from within the streamfield!)
+  logic, customized confirmation emails, MailChimp integration, and more.
 
 * Article pages for building blogs, news, etc.
 

+ 1 - 1
docs/reference/django_settings.rst

@@ -40,7 +40,7 @@ CRX_FRONTEND_*
 
 Various frontend settings to specify defaults and choices used in the wagtail
 admin related to rendering blocks, pages, and templates. By default, all
-CRX_FRONTEND_* settings are designed to work with Bootstrap 4 CSS framework, but
+CRX_FRONTEND_* settings are designed to work with Bootstrap 5 CSS framework, but
 these can be customized if using a different CSS framework or theme variant.
 
 `Available settings are defined here <https://github.com/coderedcorp/coderedcms/blob/dev/coderedcms/settings.py>`.