{# templates/partials/site_header.html.twig
Renderizado por HeaderController::siteHeader y recibe "header"
con: header.weather { temp, wind, dir } y header.tide { type, time } #}
{% set h = header|default({}) %}
{% set wx = {
temp: h.weather is defined and h.weather is not null and h.weather.temp is defined ? h.weather.temp : null,
wind: h.weather is defined and h.weather is not null and h.weather.wind is defined ? h.weather.wind : null,
dir: h.weather is defined and h.weather is not null and h.weather.dir is defined ? h.weather.dir : null
} %}
{% set tide = {
type: h.tide is defined and h.tide is not null and h.tide.type is defined ? h.tide.type : null,
time: h.tide is defined and h.tide is not null and h.tide.time is defined ? h.tide.time : null
} %}