You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wowstash/wowstash/templates/scripts.html

22 lines
641 B

<script src="/static/vendor/jquery/jquery.min.js"></script>
<script src="/static/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="/static/vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="/static/js/new-age.js"></script>
<script src="/static/js/noty.js"></script>
{% with messages = get_flashed_messages() %}
{% if messages %}
<script type="text/javascript">
{% for message in messages %}
new Noty({
type: 'warning',
theme: 'relax',
layout: 'topCenter',
text: '{{ message }}',
timeout: 3500
}).show();
{% endfor %}
</script>
{% endif %}
{% endwith %}