twig.html.twig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {% extends 'base.html.twig' %}
  2. {% set user = "Alice" %}
  3. {% set discount = 15 %}
  4. {% set initialPrice = 200 %}
  5. {% set isMember = true %}
  6. {% set items = 5 %}
  7. {% set bonusPoints = 50 ? isMember : "tata" %}
  8. {% set toto = ['toto'] %}
  9. {% set toto2 = new stdClass() %}
  10. {{ isMember ? "Eligible for members special gift ?"|upper|lower : ":Regular item" }}
  11. {% block body %}
  12. Hello, {{ user }}!
  13. {% if isMember %}
  14. {% set finalPrice = initialPrice - (initialPrice * discount / 100) %}
  15. You have a discount of {{ discount }}%, so the final price is {{ finalPrice }} EUR.
  16. {% if finalPrice < 100 %}
  17. You're eligible for free shipping!
  18. {% else %}
  19. Shipping costs will apply.
  20. {% endif %}
  21. {% else %}
  22. No discount applies since you are not a member.
  23. The price remains {{ initialPrice }} EUR.
  24. {% endif %}
  25. {% if items > 3 %}
  26. As you have more than 3 items, you receive an additional 10 bonus points!
  27. {% set bonusPoints = bonusPoints + 10 %}
  28. {% endif %}
  29. Your total bonus points: {{bonusPoints }}.
  30. {% for i in 1..items %}
  31. - Item {{ i }}: {{ isMember ? "Eligible for members special gift ?"|upper : ":Regular item" }}\n
  32. {% if i == 10 %}
  33. This is an even-numbered item.
  34. {% else %}
  35. This is an odd-numbered item.
  36. {% endif %}
  37. {% endfor %}
  38. {% if items == 0 %}
  39. You have no items in your cart.
  40. {% elseif items == 1 %}
  41. You have 1 item in your cart.
  42. {% else %}
  43. You have {{ items + 41 }} items in your cart.
  44. {% endif %}
  45. {{ dump(isMember) }}
  46. {% if isMember === true %}
  47. {{ 'okkkkkkkkkkkkkkkk'|upper|lower }}
  48. {% endif %}
  49. {% endblock %}