forked from I2P_Developers/i2p.www
18 lines
1.0 KiB
HTML
18 lines
1.0 KiB
HTML
{% macro footer_div(pos, url, name, icon) -%}
|
|
<div class='aside {{ pos }}'>
|
|
<a href="{{ url }}">
|
|
<img src="{{ url_for('static', filename=icon) }}" height="128px" alt="{{ name }}" title="{{ name }}" />
|
|
<h1>{{ name }}</h1>
|
|
</a>
|
|
</div>
|
|
{%- endmacro %}
|
|
{% macro footer_download(pos, type, name, icon) -%}
|
|
{{ footer_div(pos, '%s#%s' % (get_url('downloads_list'), type), name, icon) }}
|
|
{%- endmacro %}
|
|
{{ footer_download('first', 'windows', 'Windows', 'images/download/windows.png') }}
|
|
{{ footer_download('second', 'mac', 'Mac OS X', 'images/download/mac-osx.png') }}
|
|
{{ footer_download('third', 'unix', 'Linux / BSD / Solaris', 'images/download/freebsd-tux.png') }}
|
|
{{ footer_div('fourth', get_url('downloads_debian'), 'Debian / Ubuntu', 'images/download/debian-ubuntu.png') }}
|
|
{{ footer_download('fifth', 'android', 'Android', 'images/download/android.png') }}
|
|
{{ footer_div('sixth', site_url('get-involved/donate'), _('Donate'), 'images/itoopie.png') }}
|