cloud-run-alwayson-cpu-weather-advisory/nodejs/templates/index.html [1:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NOAA US Weather Advisory Daily (WAD) portal
NOAA US Weather Advisory Daily (WAD) portal
{% if error %}
{{ error }}
{% else %}
{% if meth == 'POST' %}
{% if advs|length %}
Current weather advisories for {{ state }}
{% for adv in advs %}
{{ loop.index }}) {{ adv.area }}{% if state not in adv.area %}, {{ state }}{% endif %}
Advisory/alert: {{ adv.headline }}
Effective as of: {{ adv.effective }}
Expires as of: {{ adv.expires }}
Instructions: {{ adv.instructions }}
{% endfor %}
{% else %}
ALERT: no weather advisories for {{ state }} at this time
{% endif %}
{% endif %}
{% endif %}
Enter 2-letter US state abbreviation for weather advisories (ex: NY, WA; default: CA):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
cloud-run-alwayson-cpu-weather-advisory/python/templates/index.html [1:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NOAA US Weather Advisory Daily (WAD) portal
NOAA US Weather Advisory Daily (WAD) portal
{% if error %}
{{ error }}
{% else %}
{% if meth == 'POST' %}
{% if advs|length %}
Current weather advisories for {{ state }}
{% for adv in advs %}
{{ loop.index }}) {{ adv.area }}{% if state not in adv.area %}, {{ state }}{% endif %}
Advisory/alert: {{ adv.headline }}
Effective as of: {{ adv.effective }}
Expires as of: {{ adv.expires }}
Instructions: {{ adv.instructions }}
{% endfor %}
{% else %}
ALERT: no weather advisories for {{ state }} at this time
{% endif %}
{% endif %}
{% endif %}
Enter 2-letter US state abbreviation for weather advisories (ex: NY, WA; default: CA):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -