-
-
Notifications
You must be signed in to change notification settings - Fork 772
/
credits.html
125 lines (124 loc) · 5.27 KB
/
credits.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
---
layout: default
title: Credits
permalink: /credits/
---
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PMQK7VL" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Header banner -->
<div class="header-container flex-container">
<div class="header-text">
<h1 class="title1">Credits</h1>
<p>Thank you to all of the artists and sponsors who help make our projects successful.
Check out all of the iconography and imagery we have used on our site, and tools used for our projects.
</p>
</div>
<img class="header-hero-image" src="/assets/images/credits/credits-hero.svg">
</div>
<div class='content-section wide-div'>
<a class='anchor' id='step-1'></a>
<div class='page-card card-primary page-card-lg page-card--credits'>
<h2 class="title2 credits-heading">Iconography & Imagery</h2>
<div class="credits-inner">
<ul class="credits-list unstyled-list">
{%- for item in site.data.internal.credits -%}
{%- if item[1].image-url -%}
<li>
<!-- originally class="project-card-inner" -->
<div class="credits-item">
<div class="icon-left">
<img class="icon-left-image" src={{ item[1].image-url | absolute_url }} alt=""/>
</div>
<div class="icon-info">
{%- if item[1].title -%}
<p>
<strong>Name: </strong>
<!-- original-url: 'https://thenounproject.com/kmgdesignid/collection/calendar-time-line/?i=3256421'-->
{%- if item[1].title-link -%}
<a href="{{item[1].title-link}}">{{ item[1].title }}</a>
{%- else -%}
{{ item[1].title }}
{% endif -%}
</p>
{%- endif -%}
{%- if item[1].used-in -%}
<p>
<strong>Used in: </strong>
{{ item[1].used-in }}
</p>
{%- endif -%}
{%- if item[1].artist -%}
<p>
<strong>Artist: </strong>
{{ item[1].artist }}
</p>
{%- endif -%}
{%- if item[1].provider -%}
<p>
<strong>Provider: </strong>
{%- if item[1].provider-link -%}
<a href="{{item[1].provider-link}}">{{ item[1].provider }}</a>
{%- else -%}
{{ item[1].provider }}
{%- endif -%}
</p>
{%- endif -%}
</div>
</div>
</li>
{%- endif -%}
{%- endfor -%}
</ul>
</div>
</div>
<div class="page-card card-primary page-card-lg page-card--credits">
<h2 class="title2 credits-heading">Tools</h2>
<div class="credits-inner">
<ul class="credits-list unstyled-list">
{%- for item in site.data.internal.credits.tools -%}
{%- if item[1].logo-url -%}
<li>
<!-- originally class="project-card-inner" -->
<div class="credits-tool">
<div class="icon-center">
<img class="icon-center-image" src={{ item[1].logo-url | absolute_url }} alt="">
</div>
<div class="icon-info">
{%- if item[1].used-in -%}
<p>
<strong>Used in: </strong>
{{ item[1].used-in }}
</p>
{%- endif -%}
{%- if item[1].used-by -%}
<p>
<strong>By: </strong>
{% for team in item[1].used-by %}
{% if forloop.last == true %}
<a href="{{team.project-link}}">{{ team.project-name}}</a>
{% else %}
<a href="{{team.project-link}}">{{ team.project-name}}</a>,
{% endif %}
{% endfor %}
</p>
{%- endif -%}
{%- if item[1].provider-link -%}
<p>
<strong>Provider: </strong>
{%- if item[1].provider-link -%}
<a href="{{item[1].provider-link}}">{{ item[1].tool-provider}}</a>
{%- else -%}
{{ item[1].tool-provider }}
{%- endif -%}
</p>
{%- endif -%}
</div>
</div>
</li>
{%- endif -%}
{%- endfor -%}
</ul>
</div>
</div>
</div>