Created
February 12, 2017 17:10
-
-
Save freyandhy/7a73a51206b45fccdce6e0876fb06ea3 to your computer and use it in GitHub Desktop.
This file contains 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
<!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