-
Notifications
You must be signed in to change notification settings - Fork 13
/
merchandise.html
79 lines (71 loc) · 2.25 KB
/
merchandise.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
title: Merchandise
---
<article class='merch'>
<p>
We don't currently have the capacity to sell our t-shirts. However, the good new is, you can make your own!
</p>
<h1>
First, download one of our logos
</h1>
<h2 class='subtitle'>
Logos are released under a Creative Commons <a href='https://creativecommons.org/licenses/by-nc-sa/4.0'>Attribution-NonCommercial-ShareAlike</a> license
</h2>
<div class='row'>
{% for merch in site.data.merchandise %}
<div class='col-md-4'>
<a href='#' data-toggle="modal" data-target="#{{ merch.name }}-modal">
<img src='{{ merch.path }}' alt='{{ merch.name }}' />
</a>
</div>
<!-- Modal -->
<div class='modal' id='{{ merch.name }}-modal' tabindex='-1' role='dialog' aria-labelledby='{{ merch.name }}-label' aria-hidden='true'>
<div class='modal-dialog'>
<div class='modal-content'>
<div class='modal-body'>
<img src='{{ merch.path }}' alt='{{ merch.name }}' />
</div>
<div class='modal-footer'>
{% assign parts = merch.path | split: '/' %}
{% capture dl_path %}{{ parts[-2] }}-{{ parts[-1] }}{% endcapture %}
<a href="{{ merch.path }}" download="{{ dl_path }}" class='btn btn-info'>Download</a>
{% include modal-close-button.html %}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<p>
Then
</p>
<ul>
<li>
Head over to <a href='http://www.streetshirts.co.uk/en-gb/creation'>Streetshirts</a>
</li>
<li>
Select 'Upload image' down the left-hand side
</li>
<li>
Agree to the terms and conditions
</li>
<li>
Select the logo you downloaded above
</li>
<li>
No, you don't want to vectorise your image
</li>
<li>
The image should now be there under 'Assets' on the right-hand side
</li>
<li>
Design some merch!
</li>
</ul>
<p>
If you do create some merch of your own, <em>please</em> send us a photo of you wearing it
</p>
<p>
Also, please note that we are not affiliated with Streetshirts in any way, we've just been extremely impressed with their rapid delivery of high-quality t-shirts
</p>
</article>