Skip to content

Instantly share code, notes, and snippets.

@ertankayalar
Created May 7, 2018 09:48
Show Gist options
  • Select an option

  • Save ertankayalar/8018bc3b344a6ebc4af0f81c1a22391d to your computer and use it in GitHub Desktop.

Select an option

Save ertankayalar/8018bc3b344a6ebc4af0f81c1a22391d to your computer and use it in GitHub Desktop.
Simple Twig Example
// 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