mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
For the hack day, we should only let developers use the platform in restricted mode. This commit adds a banner telling them this. Can’t get the app running locally, so fingers crossed it actually looks how I imagine it’s going to look…
6 lines
189 B
HTML
6 lines
189 B
HTML
{% macro banner(body, type=None, with_tick=False) %}
|
|
<div class='banner{% if type %}-{{ type }}{% endif %}{% if with_tick %}-with-tick{% endif %}'>
|
|
{{ body }}
|
|
</div>
|
|
{% endmacro %}
|