Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created December 6, 2017 21:39
Show Gist options
  • Save NandoKstroNet/55a2d56308206efb0e2980838d13321d to your computer and use it in GitHub Desktop.
Save NandoKstroNet/55a2d56308206efb0e2980838d13321d to your computer and use it in GitHub Desktop.
Template criado no post sobre templates no Symfony 4, da Code Experts Learning - blog.codeexpertslearning.com.br
{% extends 'base.html.twig' %}
{% block body %}
<h1> Produtos </h1>
<hr>
<ul>
{% for p in products %}
<li>
Nome: {{p.name}}
- Preço: R$ {{p.price|number_format(2, ',', '.')}}
</li>
{% endfor %}
</ul>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment