diff options
-rw-r--r-- | pyblackbird_cc/templates/allauth/elements/h1.html | 5 | ||||
-rw-r--r-- | pyblackbird_cc/templates/allauth/elements/h2.html | 5 | ||||
-rw-r--r-- | pyblackbird_cc/templates/allauth/layouts/entrance.html | 11 |
3 files changed, 21 insertions, 0 deletions
diff --git a/pyblackbird_cc/templates/allauth/elements/h1.html b/pyblackbird_cc/templates/allauth/elements/h1.html new file mode 100644 index 0000000..40ebed8 --- /dev/null +++ b/pyblackbird_cc/templates/allauth/elements/h1.html @@ -0,0 +1,5 @@ +{% load allauth %} +<h1> + {% slot default %} + {% endslot %} +</h1> diff --git a/pyblackbird_cc/templates/allauth/elements/h2.html b/pyblackbird_cc/templates/allauth/elements/h2.html new file mode 100644 index 0000000..e2b412a --- /dev/null +++ b/pyblackbird_cc/templates/allauth/elements/h2.html @@ -0,0 +1,5 @@ +{% load allauth %} +<h2> + {% slot default %} + {% endslot %} +</h2> diff --git a/pyblackbird_cc/templates/allauth/layouts/entrance.html b/pyblackbird_cc/templates/allauth/layouts/entrance.html index 4d585cf..7f7654e 100644 --- a/pyblackbird_cc/templates/allauth/layouts/entrance.html +++ b/pyblackbird_cc/templates/allauth/layouts/entrance.html @@ -1,5 +1,7 @@ {% extends "base.html" %} +{% load allauth %} + {% load i18n %} {% block bodyclass %} @@ -27,6 +29,15 @@ </div> {% endfor %} {% endif %} + + {% element h2 %}Coming soon!{% endelement %} + + <p>Alphabet Learning is a brand new platform setting + education resources. As of October 2024, the site is currently in active development + and will be launched soon. coming soon</p> + + <hr> + {% block content %} {% endblock content %} </div> |