]> git.ipfire.org Git - ipfire.org.git/blob - templates/static/artwork.html
132e398cd822994a9e694258b83dce543340461f
[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 <p>
15 On this page, you will find a logos and templates for printing.
16 </p>
17 <p>
18 All rights of artistic works and their content, which are not
19 explicitly labled belong to the IPFire project and are protected
20 by copyright and may not be used without explicit authorization.
21 </p>
22
23 <div class="page-header">
24 <h1>{{ _("The IPFire Logo") }}</h1>
25 </div>
26
27 <div class="row">
28 {% for i in ("512x512", "256x256", "128x128", "64x64", "32x32") %}
29 <div class="col-lg-4 col-md-4">
30 <a class="thumbnail" href="{{ static_url("images/tux/ipfire_tux_%s.png" % i) }}">
31 <img src="{{ static_url("images/tux/ipfire_tux_%s.png" % i) }}" alt="{{ _("Logo") }}">
32 </a>
33 </div>
34 {% end %}
35 </div>
36
37 <div class="page-header">
38 <h2>{{ _("Flyers, Rollups, CDs and more") }}</h2>
39 </div>
40
41 <p>
42 These artworks have been designed by
43 <a href="http://www.elricco.com">elricco media services</a>.
44 </p>
45
46 <div class="row">
47 {% for i in ("rollup", "flyer", "cd_schuber", "cd_label") %}
48 <div class="col-lg-6 col-md-6">
49 <a class="thumbnail" href="{{ static_url("images/artwork/%s.pdf" % i) }}">
50 <img src="{{ static_url("images/artwork/%s_tn.png" % i) }}" alt="{{ _("Artwork") }}">
51 </a>
52 </div>
53 {% end %}
54 </div>
55 {% end block %}