{% extends "community/layout.html" %} {% block title %}Powered By Flask{% endblock %} {% macro render_projects(kind) %} {% for project in projects[kind] %}

{{ project.name }}

{{ project.description }}
URL:
{{ project.host }} {% if project.source %}
Sourcecode:
{{ project.sourcehost }} {% endif %}
{% endfor %} {% endmacro %} {% block body %}

Powered By Flask

This is a list of websites and projects that disclosed that they are running on Flask. If you want your own website or project listed here, send me a mail with the URL, name and description of the website.

Websites

{{ render_projects('websites') }}

Applications

{{ render_projects('apps') }} {% endblock %}