Skip to content

Instantly share code, notes, and snippets.

@use
Created August 7, 2012 04:52
Show Gist options
  • Save use/3281745 to your computer and use it in GitHub Desktop.
Save use/3281745 to your computer and use it in GitHub Desktop.
Flask template example
{% extends "layout.html" %}
{% block body %}
<h1>Search Results</h1>
<ul>
{% for person in results %}
<li>
<a href="/person/{{ person.id }}">{{ person.first_name }} {{ person.last_name}}</a>
{{person.num_roles}}
</li>
{% endfor %}
</ul>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment