<style>
.infos-bar {
padding: 10px;
line-height: 22px;
text-shadow: none;
text-align: center;
background-color: {{ get_env('BACKGROUND_COLOR_INFOS_BAR') }};
color: {{ get_env('TEXT_COLOR_INFOS_BAR') }};
}
</style>
{% if get_env("ENABLE_INFOS_BAR") == 'true' or get_env("ENABLE_SHOW_HOMESCREEN_BAR") == 'true' %}
<div class="infos-bar">
<div class="container">
{% if get_env("ENABLE_INFOS_BAR") == 'true' %}
{{ get_env("TEXT_INFOS_BAR") | raw }}
{% endif %}
{% if get_env("ENABLE_SHOW_HOMESCREEN_BAR") == 'true' %}
<div class="add-to">
{{ get_env("TEXT_HOMESCREEN_BAR") | raw }}
</div>
{% endif %}
</div>
</div>
{% endif %}