2010-05-18 17:56:51 +02:00
|
|
|
{% extends "community/layout.html" %}
|
|
|
|
|
{% block title %}Logos{% endblock %}
|
|
|
|
|
{% macro logo(format) -%}
|
|
|
|
|
<a href="{{ url_for('.static', filename='logo/flask.' ~ format)
|
|
|
|
|
}}">{{ format|upper }} format</a>
|
|
|
|
|
{%- endmacro %}
|
|
|
|
|
{% block body %}
|
|
|
|
|
<h2>Logos</h2>
|
|
|
|
|
<p>
|
|
|
|
|
The Flask logo is available for download and use in the formats
|
|
|
|
|
below. You can use the logo to promote Flask like you want.
|
2010-06-19 14:03:43 +02:00
|
|
|
The image is licensed under the “Flask Artwork License”.
|
|
|
|
|
<a href="{{ url_for('docs.show', page='license')
|
|
|
|
|
}}#flask-artwork-license">Read license text</a>.
|
2010-05-18 17:56:51 +02:00
|
|
|
<ul>
|
|
|
|
|
<li>{{ logo('png') }}: for online and screen usage
|
|
|
|
|
<li>{{ logo('svg') }}: for online and screen usage
|
|
|
|
|
<li>{{ logo('eps') }}: for print use
|
|
|
|
|
<li>{{ logo('pdf') }}: for print use
|
|
|
|
|
</ul>
|
|
|
|
|
<p>
|
|
|
|
|
The font used in the logo is “Hightower Text roman” from the
|
|
|
|
|
Font Bureau foundry. The font can be purchased from
|
|
|
|
|
<a href="http://www.ascenderfonts.com/font/hightower-text-roman.aspx"
|
|
|
|
|
>Ascender Fonts</a>.
|
|
|
|
|
{% endblock %}
|