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