27 lines
1 KiB
HTML
27 lines
1 KiB
HTML
{% 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.
|
|
The image is licensed under the Creative Commons
|
|
“Attribution-No Derivative Works 3.0 Austria” license.
|
|
<a href="http://creativecommons.org/licenses/by-nd/3.0/at/deed.en"
|
|
>Read license text</a>.
|
|
<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 %}
|