Skip to content

Instantly share code, notes, and snippets.

@tatma
Last active August 8, 2018 19:24
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/46c70c9dbf1758cf4339337caa7ff755 to your computer and use it in GitHub Desktop.
Save tatma/46c70c9dbf1758cf4339337caa7ff755 to your computer and use it in GitHub Desktop.
Creazione del file base.html.twig e menu.html.twig
<!DOCTYPE html>
<html>
<head>
<title>
{% block title %}{% endblock %}
</title>
</head>
<body>
{% include "menu.html.twig" %}
{% block content %}{% endblock %}
</body>
</html>
<ul>
<li>
<a href=”{{ path(‘home’) }}”>Home</a>
</li>
<li>
<a href=”{{ path(‘pizza’) }}”>Pizza</a>
</li>
<li>
<a href=”{{ path(‘random’, { ‘randomNumber’: 20 }) }}”>Random 20</a>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment