]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/static/artwork.html
Website update.
[ipfire.org.git] / www / templates / static / artwork.html
CommitLineData
940227cb 1{% extends "../base-2.html" %}
a763c12f
JPT
2
3{% block title %}{{ _("Artwork") }}{% end block %}
4
60024cc8
MT
5{% block body %}
6 <div class="page-header">
7 <h1>{{ _("Artwork") }}</h1>
a763c12f 8 </div>
a763c12f 9
60024cc8
MT
10 {% if lang == "de" %}
11 <p>
12 Auf dieser Seite befinden sich Logos und Printvorlagen.
13 </p>
14 <p>
15 Alle Rechte an künstlerischen Werken bzw. deren Inhalte, die nicht
16 explizit anders gekennzeichnet sind, gehören dem IPFire-Projekt
17 und sind folglich urheberrechtlich geschützt und dürfen nur mit
18 ausdrücklicher Genehmigung verwendet werden.
19 </p>
20 {% else %}
21 <p>
22 On this page, you will find a logos and templates for printing.
23 </p>
24 <p>
25 All rights of artistic works and their content, which are not
26 explicitly labled belong to the IPFire project and are protected
27 by copyright and may not be used without explicit authorization.
28 </p>
29 {% end %}
a763c12f 30
60024cc8
MT
31 <h2>{{ _("The IPFire Logo") }}</h2>
32 <ul class="thumbnails">
33 {% for i in ("512x512", "256x256", "128x128", "64x64", "32x32") %}
34 <li class="span4">
35 <a class="thumbnail" href="{{ static_url("images/tux/ipfire_tux_%s.png" % i) }}">
36 <img src="{{ static_url("images/tux/ipfire_tux_%s.png" % i) }}" alt="{{ _("Logo") }}">
37 </a>
38 </li>
39 {% end %}
40 </ul>
41 <hr>
a763c12f 42
60024cc8
MT
43 <h2>{{ _("Flyers, Rollups, CDs and more") }}</h2>
44 {% if lang == "de" %}
45 <p>
46 Diese Arbeiten wurden erstellt von
47 <a href="http://www.elricco.com">elricco media services</a>.
48 </p>
49 {% else %}
50 <p>
51 These artworks have been designed by
52 <a href="http://www.elricco.com">elricco media services</a>.
53 </p>
54 {% end %}
a763c12f 55
60024cc8
MT
56 <ul class="thumbnails">
57 {% for i in ("rollup", "flyer", "cd_schuber", "cd_label") %}
58 <li class="span6">
59 <a class="thumbnail" href="{{ static_url("images/artwork/%s.pdf" % i) }}">
60 <img src="{{ static_url("images/artwork/%s_tn.png" % i) }}" alt="{{ _("Artwork") }}">
61 </a>
62 </li>
63 {% end %}
64 </ul>
a763c12f 65{% end block %}