diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | templates/web/base/header.html | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f950e974..3020a15c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,8 @@ - Consolidate various admin summary statistics page. #1919. - 'Auto-response' flag on response templates is honoured for fetched Open311 updates. #1924 + - Development improvements: + - Add hook for pre-wrapper content. - UK: - Use SVG logo, inlined on front page. #1887 - Inline critical CSS on front page. diff --git a/templates/web/base/header.html b/templates/web/base/header.html index faba02519..3cc166a32 100644 --- a/templates/web/base/header.html +++ b/templates/web/base/header.html @@ -27,6 +27,8 @@ [% TRY %][% PROCESS 'set_body_class.html' %][% CATCH file %][% END %] <body class="[% bodyclass | html IF bodyclass %]"> + [% TRY %][% PROCESS 'before_wrapper.html' %][% CATCH file %][% END %] + <div class="wrapper"> <div class="table-cell"> [% INCLUDE 'header_site.html' %] |