Created
July 28, 2016 08:27
-
-
Save sinar96/226c2dbca5d5ac8a140d4cc864d4d8c5 to your computer and use it in GitHub Desktop.
untuk memanggil layout-list yang telah kita buat.
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
<title>This is Title </title> | |
<body> | |
<h2> | |
<ul> | |
<!--% for user(as variable)--> | |
{% for user in users %} | |
<!--Dan disinilah dynamic route itu berfungsi--> | |
<li><a href="{{ user.url }}">{{ user.username }}</a></li> | |
{% endfor %} | |
</ul> | |
<h2> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment