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.

index.html.twig 452B

1234567891011121314
  1. {% extends "base.html.twig" %} {% block main %}
  2. <h1>
  3. {% for key in key2 %}
  4. <li>{{ key }}</li>
  5. {% endfor %}
  6. </h1>
  7. {% block navbar %} {% endblock %}
  8. <form action="/">
  9. <label for="name">First Name</label>
  10. <input type="text" name="name" value="{{ name }}" /><br />
  11. <label for="last-name">Last Name</label>
  12. <input type="text" name="last-name" value="{{ lastname }}" />
  13. </form>
  14. {% endblock %} {% block footer %} Dit is de footer {% endblock %}