Skip to content

Instantly share code, notes, and snippets.

@tatma
Created August 18, 2018 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatma/159fb4c7ac8b094dc89ec6f94f618581 to your computer and use it in GitHub Desktop.
Save tatma/159fb4c7ac8b094dc89ec6f94f618581 to your computer and use it in GitHub Desktop.
Include: creazione del menù
<ul>
<li><a href="{{ path('home') }}">Torna alla home</a></li>
<li><a href="{{ path('who_we_are') }}">Chi siamo</a></li>
<li><a href="{{ path('contact_us') }}">Contattaci</a></li>
</ul>
{% extends "base.html.twig" %}
{% block title %}Symfony 4{% endblock %}
{% block main_title %}Framework Symfony 4{% endblock %}
{% block content %}
{% include "menu.html.twig" %}
<p>
Symfony 4 è un framework backend
</p>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment