diff --git a/a2cps-cms/secrets.py b/a2cps-cms/secrets.py index 3bd21bd3..80becee1 100644 --- a/a2cps-cms/secrets.py +++ b/a2cps-cms/secrets.py @@ -10,7 +10,7 @@ # DJANGO SETTINGS ######################## -_LDAP_ENABLED = False +_LDAP_ENABLED = True ######################## # DJANGO CMS SETTINGS @@ -18,7 +18,7 @@ _CMS_TEMPLATES = ( ('a2cps-cms/templates/fullwidth.html', 'Fullwidth'), - # Support standard template for demo purposes\ + # Support standard template for demo purposes # NOTE: A2CPS will use this instead if it need not load `migration.v1_v2.css # ('fullwidth.html', 'Standard Fullwidth'), ) @@ -59,4 +59,4 @@ # PORTAL ######################## -_PORTAL = False +_PORTAL = True diff --git a/a2cps-cms/templates/fullwidth.html b/a2cps-cms/templates/fullwidth.html new file mode 100644 index 00000000..1476f6c0 --- /dev/null +++ b/a2cps-cms/templates/fullwidth.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% load cms_tags staticfiles %} + +{% block title %}{% page_attribute "page_title" %}{% endblock title %} + +{% block assets_font %} + {{ block.super }} +{% endblock assets_font %} + +{% block content %} +{% placeholder "content" %} +{% endblock content %} + +{% block assets_custom %} + {{ block.super }} + + + +{% endblock assets_custom %}