diff --git a/apps/tup-cms/src/taccsite_cms/settings_custom.py b/apps/tup-cms/src/taccsite_cms/settings_custom.py index ee189c6bc..d51d1c97b 100644 --- a/apps/tup-cms/src/taccsite_cms/settings_custom.py +++ b/apps/tup-cms/src/taccsite_cms/settings_custom.py @@ -95,16 +95,15 @@ # TACC: LOGOS ######################## -LOGO = [ - "tup", - "tup_cms/img/org_logos/tacc-logo-white.svg", - "tup", - "/", - "_self", - "TACC Logo", - "anonymous", - "True" -] +PORTAL_LOGO = { + "img_file_src": "tup_cms/img/org_logos/tacc-logo-white.svg", + "is_remote": False, + "img_class": "", + "link_href": "/", + "link_target": "_self", + "img_alt_text": "TACC Logo", + "img_crossorigin": "anonymous", +} # To hide logo, set `PORTAL_LOGO = False` ######################## # TACC: SEARCH @@ -129,15 +128,17 @@ # TACC: PORTAL ######################## -INCLUDES_CORE_PORTAL = False -INCLUDES_PORTAL_NAV = True -INCLUDES_SEARCH_BAR = True +PORTAL_IS_TACC_CORE_PORTAL = False +PORTAL_HAS_LOGIN = True +PORTAL_HAS_SEARCH = True + +PORTAL_NAV_WIDTH = 'lg' ######################## # TACC: SOCIAL MEDIA ######################## -TACC_SOCIAL_SHARE_PLATFORMS = ['linkedin', 'facebook', 'email'] +PORTAL_SOCIAL_SHARE_PLATFORMS = ['linkedin', 'facebook', 'email'] ######################## # DJANGOCMS_BLOG @@ -189,10 +190,10 @@ # DJANGOCMS_BLOG: TACC ######################## -TACC_BLOG_SHOW_CATEGORIES = True -TACC_BLOG_SHOW_TAGS = False -TACC_BLOG_CUSTOM_MEDIA_POST_CATEGORY = 'multimedia' -TACC_BLOG_SHOW_ABSTRACT_TAG = 'external' +PORTAL_BLOG_SHOW_CATEGORIES = True +PORTAL_BLOG_SHOW_TAGS = False +PORTAL_BLOG_CUSTOM_MEDIA_POST_CATEGORY = 'multimedia' +PORTAL_BLOG_SHOW_ABSTRACT_TAG = 'external' TACC_BLOG_CATEGORY_ORDER = ['press-release', 'feature-story', 'multimedia', 'podcast']