13 lines
387 B
Twig
13 lines
387 B
Twig
|
{% extends 'master.twig' %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% block messages_content %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% if globals.eeprom_path is not empty and globals.eeprom_app_messages is not empty %}
|
||
|
<script type="text/javascript">
|
||
|
const peepPath = '{{ globals.eeprom_path }}', peepApp = '{{ globals.eeprom_app_messages }}';
|
||
|
</script>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|