Created
December 6, 2017 21:39
-
-
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
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
{% 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