]> git.ipfire.org Git - ipfire.org.git/blame - templates/static/artwork.html
Make all absolute links use https:// instead of http://
[ipfire.org.git] / templates / static / artwork.html
CommitLineData
9b5ac075 1{% extends "../base.html" %}
a763c12f
JPT
2
3{% block title %}{{ _("Artwork") }}{% end block %}
9b5ac075
MT
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 %}
a763c12f 12
60024cc8 13{% block body %}
e52b45b6
MT
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>
a763c12f 22
9b5ac075
MT
23 <div class="page-header">
24 <h1>{{ _("The IPFire Logo") }}</h1>
25 </div>
26
1267da6d 27 <div class="row">
60024cc8 28 {% for i in ("512x512", "256x256", "128x128", "64x64", "32x32") %}
1267da6d 29 <div class="col-lg-4 col-md-4">
60024cc8
MT
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>
1267da6d 33 </div>
60024cc8 34 {% end %}
1267da6d 35 </div>
a763c12f 36
9b5ac075
MT
37 <div class="page-header">
38 <h2>{{ _("Flyers, Rollups, CDs and more") }}</h2>
39 </div>
40
e52b45b6
MT
41 <p>
42 These artworks have been designed by
ba43a892 43 <a href="https://www.elricco.com">elricco media services</a>.
e52b45b6 44 </p>
a763c12f 45
1267da6d 46 <div class="row">
60024cc8 47 {% for i in ("rollup", "flyer", "cd_schuber", "cd_label") %}
1267da6d 48 <div class="col-lg-6 col-md-6">
60024cc8
MT
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>
1267da6d 52 </div>
60024cc8 53 {% end %}
1267da6d 54 </div>
a763c12f 55{% end block %}