diff --git a/common/djangoapps/pipeline_mako/templates/static_content.html b/common/djangoapps/pipeline_mako/templates/static_content.html index f2b0a90a5e..d0d3f07277 100644 --- a/common/djangoapps/pipeline_mako/templates/static_content.html +++ b/common/djangoapps/pipeline_mako/templates/static_content.html @@ -92,7 +92,7 @@ dirs = settings.DEFAULT_TEMPLATE_ENGINE['DIRS'] theme = get_current_theme() if theme: dirs = list(dirs) - dirs.insert(0, theme.path / 'templates') + dirs.append(theme.path / 'templates') engine = Engine(dirs=dirs) loader = Loader(engine)