Skip to content

Instantly share code, notes, and snippets.

@sinar96
Created July 28, 2016 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sinar96/226c2dbca5d5ac8a140d4cc864d4d8c5 to your computer and use it in GitHub Desktop.
Save sinar96/226c2dbca5d5ac8a140d4cc864d4d8c5 to your computer and use it in GitHub Desktop.
untuk memanggil layout-list yang telah kita buat.
<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