Skip to content

Instantly share code, notes, and snippets.

@sinar96
Last active July 28, 2016 08:19
Show Gist options
  • Save sinar96/ee23dd675452590bdec6d07ed0d67742 to your computer and use it in GitHub Desktop.
Save sinar96/ee23dd675452590bdec6d07ed0d67742 to your computer and use it in GitHub Desktop.
Contoh fungsi penggunaan Jinja
{% 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