mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
It seems that the mailman update is more complicated than I originally thought. So I decided to start with clean role and will slowly start adding new changes. Signed-off-by: Michal Konecny <mkonecny@redhat.com>
16 lines
436 B
HTML
16 lines
436 B
HTML
{% if env == 'staging' %}
|
|
<script src="https://apps.stg.fedoraproject.org/fedmenu/js/fedmenu.js"> </script>
|
|
{% else %}
|
|
<script src="https://apps.fedoraproject.org/fedmenu/js/fedmenu.js"> </script>
|
|
{% endif %}
|
|
<script>
|
|
fedmenu({
|
|
{% if env == 'staging' %}
|
|
'url': 'https://apps.stg.fedoraproject.org/js/data.js',
|
|
{% else %}
|
|
'url': 'https://apps.fedoraproject.org/js/data.js',
|
|
{% endif %}
|
|
'position': 'bottom-left'
|
|
});
|
|
</script>
|