Skip to content

Instantly share code, notes, and snippets.

@freyandhy
Created February 12, 2017 17:10
Show Gist options
  • Save freyandhy/7a73a51206b45fccdce6e0876fb06ea3 to your computer and use it in GitHub Desktop.
Save freyandhy/7a73a51206b45fccdce6e0876fb06ea3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Twig</title>
</head>
<body>
<ul>
{% for user in users %}
{% if user.married == true %}
<li>Alhamdulillah, <b>{{ user.name}}</b> di umur {{ user.age }} telah menikah :D </li>
{% else %}
<li><b>{{ user.name }}</b> yang sudah ber umur {{ user.age }} semoga cepat menikah ya :D</li>
{% endif %}
{% endfor %}
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment