From bd6714b4a72f688b41bd77a86989a18f21ecf60a Mon Sep 17 00:00:00 2001 From: dcore94 Date: Fri, 8 Jan 2021 17:48:37 +0100 Subject: [PATCH] fixed name of template --- templates/login/theme.properties.j2 | 52 +++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 templates/login/theme.properties.j2 diff --git a/templates/login/theme.properties.j2 b/templates/login/theme.properties.j2 new file mode 100644 index 0000000..e4f76a9 --- /dev/null +++ b/templates/login/theme.properties.j2 @@ -0,0 +1,52 @@ +parent= {{ parent_theme }} + +{% if styles is defined and styles %} +styles={{ styles }} +{% endif %} + +titleTag={{ title_tag }} +favicon={{ favicon_url }} + +{% if background_image is defined and background_image %} +contentBGImg={{ background_image }} +{% endif %} + +{% if content_style is defined and content_style %} +contentStyle={{ content_style }} +{% endif %} + +{% if logo_header_style is defined and logo_header_style %} +contentStyle={{ logo_header_style }} +{% endif %} + +logoSrc={{ logo_url }} +logoAlt={{ logo_alt }} +{% if logo_style is defined and logo_style %} +logoStyle={{ logo_style }} +{% endif %} + +infrastructureLogo={{ infrastructure_logo }} +{% if infrastructure_logo_style is defined and infrastructure_logo_style %} +infrastructureLogoStyle={{ infrastructure_logo_style }} +{% endif %} + +{% if footer_style is defined and footer_style %} +footerStyle={{ footer_style }} +{% endif %} + +linkTerms={{ terms_url }} +linkCookies={{ cookie_policy_url }} +{% if privacy_policy_url is defined and privacy_policy_url %} +linkPrivacy={{ privacy_policy_url }} +{% endif %} + +linkProject={{ project_url}} +descrProject={{ project_description }} + +ECLogo={{ EC_logo }} +ECLogoStyle={{ EC_logo_style }} +ECLogoAlt={{ EC_logo_alt }} + +{% if footer is defined and footer %} +footerRow={{ footer }} +{% endif %}