Created
May 7, 2018 09:48
-
-
Save ertankayalar/8018bc3b344a6ebc4af0f81c1a22391d to your computer and use it in GitHub Desktop.
Simple Twig Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // templates/category/index.html.twig | |
| {% extends 'main.html.twig' %} | |
| {% block body %} | |
| <div class="container"> | |
| <div class="row"> | |
| <h1>Yeni Kategori Ekleme</h1> | |
| </div> | |
| <div class="row"> | |
| {{ include('category/_form.html.twig', | |
| { form: form, button_label: 'kaydet', include_back_to_home_link: true, }, | |
| with_context=false) }} | |
| </div> | |
| </div> | |
| {% endblock body %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment