{% extends 'default.html.twig' %} {% block content %} {% set weather_icons = { 'Sunny': '☀️', 'Partly cloudy': '⛅', 'Cloudy': '☁️', 'Foggy': '🌫️', 'Drizzle': '🌦️', 'Rain': '🌧️', 'Snow': '❄️', 'Thunderstorm': '⛈️' } %}
{% if page.header.location_city or page.header.location_country %}

📍 {% if page.header.location_city %}{{ page.header.location_city }}{% endif %} {% if page.header.location_city and page.header.location_country %}, {% endif %} {% if page.header.location_country %}{{ page.header.location_country }}{% endif %}

{% endif %} {% if page.header.weather_desc or page.header.weather_temp_c %}

{% if page.header.weather_desc %} {{ weather_icons[page.header.weather_desc] ?? '🌡️' }} {{ page.header.weather_desc }} {% endif %} {% if page.header.weather_temp_c %} · {{ page.header.weather_temp_c|round }}°C {% endif %}

{% endif %}

{{ page.title }}

{{ page.content }}
{% set images = page.media.images %} {% if images|length > 0 %}
{% for image in images %} {% endfor %}
{% endif %}
{% endblock %}