Last active
July 28, 2016 08:19
-
-
Save sinar96/ee23dd675452590bdec6d07ed0d67742 to your computer and use it in GitHub Desktop.
Contoh fungsi penggunaan Jinja
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
{% extends "layout.html" %} | |
{% block body %} | |
<ul> | |
{% for user in users %} | |
<li><a href="{{ user.url }}">{{ user.username }}</a></li> | |
{% endfor %} | |
</ul> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment