Created
July 16, 2013 16:58
-
-
Save novasky-zz/6010529 to your computer and use it in GitHub Desktop.
Loop For, Condição IF e Operador Ternário no Twig
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
{# Laço de repetição de array #} | |
{% for fruta in listFrutas %} | |
- {{fruta.nome}} <br> | |
{% endfor %} | |
or | |
{% for i in 0..10 %} | |
{# Laço de repetição #} | |
{% for i in 1..10 %} | |
- Repetição número {{i}} <br> | |
{% endfor %} | |
{# ------------------------------- #} | |
{# Condição IF #} | |
{% if login == true %} | |
Você está logado! | |
{% endif %} | |
or | |
{# Operador Ternário #} | |
Você {{ login == true ? '' : 'não' }} está logado! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment