This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Bridge/Twig/Extension/theme_extends.html.twig

9 lines
263 B
Twig
Raw Normal View History

{% extends 'form_div_layout.html.twig' %}
2011-06-11 09:11:29 +01:00
{% block field_widget %}
{% spaceless %}
{% set type = type|default('text') %}
<input type="{{ type }}" {{ block('attributes') }} value="{{ value }}" rel="theme" />
{% endspaceless %}
2011-06-13 17:54:20 +01:00
{% endblock field_widget %}