templates/weather/new.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}New Weather{% endblock %}
  3. {% block body %}
  4.     <h1 style="color: red">New Weather</h1>
  5.     {{ include('weather/_form.html.twig') }}
  6.     <a class="btn btn-outline-primary btn-sm" href="{{ path('weather_index') }}">Return to list</a>
  7. {% endblock %}