flask/flask_website/templates/community/poweredby.html

34 lines
1 KiB
HTML
Raw Normal View History

{% extends "community/layout.html" %}
{% block title %}Powered By Flask{% endblock %}
{% macro render_projects(kind) %}
{% for project in projects[kind] %}
<div class=project>
<h4><a href="{{ project.url }}">{{ project.name }}</a></h4>
<div class=description>
{{ project.description }}
</div>
<dl>
<dt>URL:
<dd><a href="{{ project.url }}">{{ project.host }}</a>
{% if project.source %}
<dt>Sourcecode:
<dd><a href="{{ project.source }}">{{ project.sourcehost }}</a>
{% endif %}
</dl>
</div>
{% endfor %}
{% endmacro %}
{% block body %}
<h2>Powered By Flask</h2>
<p>
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,
<a href=mailto:armin.ronacher@active-4.com>send me a mail</a>
with the URL, name and description of the website.
<h3>Websites</h3>
{{ render_projects('websites') }}
<h3>Applications</h3>
{{ render_projects('apps') }}
{% endblock %}