-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmerchandise.html
61 lines (53 loc) · 1.34 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
---
title: Merch
merch:
- 2018/rfm.png
- 2017/wide.png
- 2017/square.png
- 2014/wide.png
- 2014/stacked.png
---
<article>
<p>We don't currently have the capacity to sell our merchandise.
However, you can make your own...</p>
<h2>First, download one of our
(<a
href='https://creativecommons.org/licenses/by-nc-sa/4.0'
title='Creative Commons Attribution-NonCommercial-ShareAlike'>cc-licensed</a>)
logos</h2>
<div
class='row'
>
{% for item in page.merch %}
{% capture name %}{{ item | split: '.' | first | replace: '/', '-' }}{% endcapture %}
{% capture path %}/assets/logos/{{ item }}{% endcapture %}
<div
class='col-sm card merch-logo'
>
<a
href='#'
data-target='#{{ name }}-modal'
data-toggle='modal'
>
<img
alt='{{ name }}'
src='{{ path }}'
/>
</a>
</div>
{%
include modals/merch-modal.html
name = name
path = path
%}
{% endfor %}
</div>
<hr>
<h2>Then try</h2>
<ul>
<li><a href='http://www.streetshirts.co.uk/en-gb/creation'>Streetshirts</a> for t-shirts</li>
<li><a href='https://www.justpersonalise.com/personalised-custom-phone-case/'>Just Personalise</a> for phone-cases</li>
</ul>
<p>If you do create some merch of your own, <em>please</em> send us a photo
of it</p>
</article>