Website update. There is now a community section.

This commit is contained in:
Armin Ronacher 2010-05-18 17:56:51 +02:00
parent 33bb6dec37
commit 2fb50e55d9
28 changed files with 1441 additions and 33 deletions

View file

@ -0,0 +1,27 @@
{% 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 %}