20 lines
588 B
HTML
20 lines
588 B
HTML
<%namespace name='static' file='static_content.html'/>
|
|
<%!
|
|
from microsite_configuration import microsite
|
|
%>
|
|
<%
|
|
theme_enabled = settings.FEATURES.get("USE_CUSTOM_THEME", False)
|
|
is_microsite = microsite.is_request_in_microsite()
|
|
style_overrides_file = microsite.get_value('css_overrides_file')
|
|
%>
|
|
|
|
% if style_overrides_file:
|
|
<link rel="stylesheet" type="text/css" href="${static.url(style_overrides_file)}" />
|
|
% endif
|
|
|
|
% if theme_enabled and not is_microsite:
|
|
<%include file="theme-header.html" />
|
|
% else:
|
|
<%include file="${microsite.get_template_path('navigation.html')}" />
|
|
% endif
|