kcc-gem-theme 1.65.62 → 1.66.66

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58c6d97c4256c6608c67894969e3f2e33087ba8d9a82556882add0fde9ef3a49
4
- data.tar.gz: 49ad20ec7fdf465764d3874af1286a3df40e08e89768572f1542677e575da436
3
+ metadata.gz: 83e1794d987678fbd7ed67b455e5c4c6b2b860ed20a5168954abd725170afa72
4
+ data.tar.gz: 96af9991d05020eec42f3c314b94c83d8a4d56986b7a8e0480ec51ac58e0cd4e
5
5
  SHA512:
6
- metadata.gz: 27de5de6bb0ed96f80317a000e22e5e392eb29f98e1847c31e302e4911ca26c34702eb8ed355a3fa44c213f5757b69f20c2e754a97b33c881a4d5e3f616d178b
7
- data.tar.gz: 192e71b9d72a731b879ce4e0e528e22ebd0ecebab182fd2ca16b3a742646eb5db656910b9ac75f805a1548d669fff52d1063d54b45451d561341fe5a91197c10
6
+ metadata.gz: 3b76952fd1099d35fca1ad1280b6005390461c8ed0726bacd2409ec13c28f348eca65f3c78bc565b8473380cad2ee01474cc753aef58256bd26820c02813bb26
7
+ data.tar.gz: 070fcb47a9662e38faeda4753ad45dc49915513a12a4db97306dac95726388e0264956e02d1cdb46f22192bc2351b9742f63448ecf2b3d9abcc4df9834f4dd3d
@@ -1 +1 @@
1
- dd2fe029ff6cd2bc6218baffc7ecb712 ../assets/scss/kcc-theme.css
1
+ 437261519bf6fcddff04ae19f50524ea ../assets/scss/kcc-theme.css
@@ -1 +1 @@
1
- cfc37d41b1592bfba0cc
1
+ 680d788e5a9ab08cc7f2
@@ -3,22 +3,36 @@
3
3
  <a href="cloudcannon:collections/_accordions/" class="btn btn-success editor-button">Edit Accordions Collection</a>
4
4
  </div>
5
5
  </div>
6
- <div id="accordion" class="accordion">
6
+ <div id="accordion" class="accordion pt-2 pb-3 mb-3">
7
7
  {% assign page_title = page.title %}
8
8
  {% assign accordion_collection = site.accordions | where: "accordion_page", page_title | sort: "order" %}
9
9
  {% for item in accordion_collection %}
10
+ {% assign this_accordion_id = item.card_heading | downcase | remove: '-' | replace: '&', 'and' | replace: ' ', '-' | remove: "'" | remove: "/" | remove: '0' | remove: '1' | remove: '2' | remove: '3' | remove: '4' | remove: '5' | remove: '6' | remove: '7' | remove: '8' | remove: '9' | remove: '?' | remove: '!' | remove: '#' | remove: '$' | remove: '.' | remove: ',' | remove: '(' | remove: ')' | remove: '®' | remove: '©' %}
10
11
  <div class="card">
11
- <div class="card-header px-0" id="card-header-{{ item.card_heading | downcase | replace: '-', '' | replace: '&', 'and' | replace: ' ', '-' | replace: "'", "" }}">
12
- <h2 class="mb-0 accordion__typography--card-header accordion__typography--hover">
13
- <button class="btn btn-link buttons__no-decoration accordion__button{% if forloop.first != true %} collapsed{% endif %}{% if forloop.first == true and page.accordion_expanded == false %} collapsed{% endif %}" type="button" data-target="#{{ item.card_heading | downcase | replace: '-', '' | replace: '&', 'and' | replace: ' ', '-' | replace: "'", "" }}" data-toggle="collapse" aria-expanded="{% if forloop.first == true and page.accordion_expanded != false %}true{% else %}false{% endif %}" aria-controls="{{ item.card_heading | downcase | replace: '-', '' | replace: '&', 'and' | replace: ' ', '-' | replace: "'", "" }}">
14
- {{ item.card_heading }}
15
- </button>
16
- </h2>
12
+ <div class="card-header px-0"
13
+ id="card-header-{{ this_accordion_id }}">
14
+ <h2 class="mb-0 accordion__typography--card-header accordion__typography--hover">
15
+ <button
16
+ class="btn btn-link buttons__no-decoration accordion__button{% if forloop.first != true %} collapsed{% endif %}{% if forloop.first == true and page.accordion_expanded == false %} collapsed{% endif %}"
17
+ type="button"
18
+ data-target="#{{ this_accordion_id }}"
19
+ data-toggle="collapse"
20
+ aria-expanded="{% if forloop.first == true and page.accordion_expanded != false %}true{% else %}false{% endif %}"
21
+ aria-controls="{{ this_accordion_id }}">
22
+ {{ item.card_heading }}
23
+ </button>
24
+ </h2>
17
25
  </div>
18
- <div id="{{ item.card_heading | downcase | replace: '-', '' | replace: '&', 'and' | replace: ' ', '-' | replace: "'", "" }}" class="collapse{% if forloop.first == true and page.accordion_expanded != false %} show{% endif %}" aria-labelledby="card-header-{{ item.card_heading | downcase | replace: '-', '' | replace: '&', 'and' | replace: ' ', '-' | replace: "'", "" }}">
19
- <div class="card-body">
20
- {{ item.content }}
21
- </div>
26
+ <div
27
+ id="{{ this_accordion_id }}"
28
+ class="collapse{% if forloop.first == true and page.accordion_expanded != false %} show{% endif %}"
29
+ aria-labelledby="card-header-{{ this_accordion_id }}">
30
+ <div class="card-body">
31
+ <!-- Editor Link -->
32
+ <a href="cloudcannon:collections/{{ item.path }}" class="btn btn-success mb-4 editor-button">Edit This Accordion Item</a>
33
+
34
+ {{ item.content }}
35
+ </div>
22
36
  </div>
23
37
  </div>
24
38
  {% endfor %}
@@ -0,0 +1,29 @@
1
+ <div class="row editor-link">
2
+ <div class="col editor-link mb-3">
3
+ <a href="cloudcannon:collections/_accordions/" class="btn btn-success editor-button">Edit Accordions Collection</a>
4
+ </div>
5
+ </div>
6
+ <div id="accordion" class="accordion">
7
+ {% assign page_title = page.title | downcase | replace: ' ', '-' | replace: '&', 'and' %}
8
+ {% assign accordion_collection = site.accordions | where_exp: "item", "item.path contains page_title" %}
9
+ {% for item in accordion_collection | sort: 'order' %}
10
+ {% assign this_accordion_id = item.card_heading | downcase | remove: '-' | replace: '&', 'and' | replace: ' ', '-' | remove: "'" | remove: "/" | remove: '0' | remove: '1' | remove: '2' | remove: '3' | remove: '4' | remove: '5' | remove: '6' | remove: '7' | remove: '8' | remove: '9' | remove: '?' | remove: '!' | remove: '#' | remove: '$' | remove: '.' | remove: ',' | remove: '(' | remove: ')' | remove: '®' | remove: '©' %}
11
+ <div class="card">
12
+ <div class="card-header accordion__padding-left" id="card-header-{{ this_accordion_id }}">
13
+ <h2 class="mb-0 accordion__typography--card-header accordion__typography--hover">
14
+ <button class="btn btn-link buttons__no-decoration accordion__button{% if forloop.first != true %} collapsed{% endif %}{% if forloop.first == true and page.accordion_expanded == false %} collapsed{% endif %}" type="button" data-target="#{{ this_accordion_id }}" data-toggle="collapse" aria-expanded="{% if forloop.first == true and page.accordion_expanded != false %}true{% else %}false{% endif %}" aria-controls="{{ this_accordion_id }}">
15
+ {{ item.card_heading }}
16
+ </button>
17
+ </h2>
18
+ </div>
19
+ <div id="{{ this_accordion_id }}" class="collapse{% if forloop.first == true and page.accordion_expanded != false %} show{% endif %}" aria-labelledby="card-header-{{ this_accordion_id }}">
20
+ <div class="card-body">
21
+ <!-- Editor Link -->
22
+ <a href="cloudcannon:collections/{{ item.path }}" class="btn btn-success mb-4 editor-button">Edit This Accordion Item</a>
23
+
24
+ {{ item.content }}
25
+ </div>
26
+ </div>
27
+ </div>
28
+ {% endfor %}
29
+ </div>
@@ -15,6 +15,7 @@
15
15
  <svg version="1.1"
16
16
  id="facebook"
17
17
  class="footer-icons"
18
+ role="icon"
18
19
  xmlns="http://www.w3.org/2000/svg"
19
20
  xmlns:xlink="http://www.w3.org/1999/xlink"
20
21
  x="0px"
@@ -28,7 +29,7 @@
28
29
  <title id="facebook-title" lang="en">Facebook</title>
29
30
  <path fill-rule="evenodd"
30
31
  clip-rule="evenodd"
31
- fill="#FFFFFF"
32
+ class="svg__fill--white"
32
33
  d="M320.526,268.436l7.223-51.045h-50.08v-34.799
33
34
  c0-10.788,8.827-19.615,19.615-19.615h32.393v-47.002l-40.702-1.634
34
35
  c-38.005-1.524-63.793,27.143-63.793,60.903v42.146h-42.858
@@ -40,6 +41,7 @@
40
41
  <a href="http://twitter.com/KCCedu" class="footer-social-links" target="_blank" rel="noopener">
41
42
  <svg version="1.1"
42
43
  id="twitter"
44
+ role="icon"
43
45
  class="footer-icons"
44
46
  xmlns="http://www.w3.org/2000/svg"
45
47
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -52,7 +54,7 @@
52
54
  xml:space="preserve"
53
55
  aria-labelledby="twitter-title">
54
56
  <title id="twitter-title" lang="en">Twitter</title>
55
- <path fill="#FFFFFF" d="M393.859,170.531c-10.142,4.498-21.039,7.539-32.479,8.905
57
+ <path class="svg__fill--white" d="M393.859,170.531c-10.142,4.498-21.039,7.539-32.479,8.905
56
58
  c11.677-6.998,20.642-18.081,24.865-31.286c-10.925,6.48-23.028,11.187-35.91,13.723
57
59
  c-10.315-10.991-25.015-17.858-41.278-17.858c-31.234,0-56.554,25.32-56.554,56.55
58
60
  c0,4.433,0.501,8.749,1.465,12.888c-47-2.358-88.67-24.873-116.562-59.087
@@ -70,6 +72,7 @@
70
72
  <a href="http://www.instagram.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
71
73
  <svg version="1.1"
72
74
  id="instagram"
75
+ role="icon"
73
76
  class="footer-icons"
74
77
  xmlns="http://www.w3.org/2000/svg"
75
78
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -83,19 +86,19 @@
83
86
  aria-labelledby="instagram-title">
84
87
  <title id="instagram-title" lang="en">Instagram</title>
85
88
  <g>
86
- <path fill="#FFFFFF" d="M317.858,407.985H194.142c-47.339,0-86.071-38.73-86.071-86.07V190.086
89
+ <path class="svg__fill--white" d="M317.858,407.985H194.142c-47.339,0-86.071-38.73-86.071-86.07V190.086
87
90
  c0-47.34,38.732-86.071,86.071-86.071h123.717c47.34,0,86.072,38.731,86.072,86.071
88
91
  v131.829C403.931,369.255,365.198,407.985,317.858,407.985 M317.858,385.243
89
92
  c16.82,0,32.697-6.614,44.705-18.623c12.01-12.008,18.622-27.885,18.622-44.705V190.086
90
93
  c0-16.82-6.612-32.697-18.622-44.706c-12.008-12.009-27.885-18.622-44.705-18.622H194.142
91
94
  c-16.82,0-32.697,6.613-44.706,18.622s-18.621,27.886-18.621,44.706v131.829
92
95
  c0,16.82,6.612,32.697,18.621,44.705c12.009,12.009,27.886,18.623,44.706,18.623H317.858z"/>
93
- <path fill="#FFFFFF" d="M337.929,254.827c0,44.994-36.477,81.47-81.472,81.47
96
+ <path class="svg__fill--white" d="M337.929,254.827c0,44.994-36.477,81.47-81.472,81.47
94
97
  c-44.994,0-81.471-36.476-81.471-81.47c0-44.995,36.477-81.471,81.471-81.471
95
98
  C301.452,173.356,337.929,209.832,337.929,254.827 M256.065,201.544
96
99
  c-29.464,0-53.348,23.885-53.348,53.347c0,29.464,23.884,53.35,53.348,53.35
97
100
  s53.347-23.886,53.347-53.35C309.412,225.429,285.529,201.544,256.065,201.544"/>
98
- <path fill="#FFFFFF" d="M358.526,172.089c0,10.654-8.637,19.292-19.29,19.292
101
+ <path class="svg__fill--white" d="M358.526,172.089c0,10.654-8.637,19.292-19.29,19.292
99
102
  c-10.655,0-19.292-8.638-19.292-19.292c0-10.653,8.637-19.29,19.292-19.29
100
103
  C349.89,152.799,358.526,161.436,358.526,172.089"/>
101
104
  </g>
@@ -106,6 +109,7 @@
106
109
  <a href="http://www.youtube.com/user/KankakeeCommCollege" class="footer-social-links" target="_blank" rel="noopener">
107
110
  <svg version="1.1"
108
111
  id="youtube"
112
+ role="icon"
109
113
  class="footer-icons" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
110
114
  y="0px"
111
115
  width="512px"
@@ -115,7 +119,7 @@
115
119
  xml:space="preserve"
116
120
  aria-labelledby="youtube-title">
117
121
  <title id="youtube-title" lang="en">YouTube</title>
118
- <path fill="#FFFFFF" d="M339.306,134.92H172.691c-91.187,0-91.187,25.977-91.187,89.865v62.432
122
+ <path class="svg__fill--white" d="M339.306,134.92H172.691c-91.187,0-91.187,25.977-91.187,89.865v62.432
119
123
  c0,60.757,12.915,89.864,91.187,89.864h166.614c70.7,0,91.19-17.012,91.19-89.864v-62.432
120
124
  C430.496,157.537,427.053,134.92,339.306,134.92z M220.347,303.457v-98.009l94.064,48.846
121
125
  L220.347,303.457z"/>
@@ -126,6 +130,7 @@
126
130
  <a href="http://www.pinterest.com/kccedu/" class="footer-social-links" target="_blank" rel="noopener">
127
131
  <svg version="1.1"
128
132
  id="pinterest"
133
+ role="icon"
129
134
  class="footer-icons"
130
135
  xmlns="http://www.w3.org/2000/svg"
131
136
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -138,7 +143,7 @@
138
143
  xml:space="preserve"
139
144
  aria-labelledby="pinterest-title">
140
145
  <title id="pinterest-title" lang="en">Pinterest</title>
141
- <path fill="#FFFFFF" d="M256.005,105.086c-83.343,0-150.915,67.566-150.915,150.912
146
+ <path class="svg__fill--white" d="M256.005,105.086c-83.343,0-150.915,67.566-150.915,150.912
142
147
  c0,61.795,37.159,114.882,90.332,138.223c-0.425-10.538-0.076-23.188,2.627-34.653
143
148
  c2.901-12.252,19.418-82.231,19.418-82.231s-4.821-9.636-4.821-23.878
144
149
  c0-22.363,12.962-39.066,29.104-39.066c13.727,0,20.357,10.311,20.357,22.656
@@ -159,6 +164,7 @@
159
164
  <a href="http://www.linkedin.com/company/kankakee-community-college" class="footer-social-links" target="_blank" rel="noopener">
160
165
  <svg version="1.1"
161
166
  id="linkedin"
167
+ role="icon"
162
168
  class="footer-icons"
163
169
  xmlns="http://www.w3.org/2000/svg"
164
170
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -170,12 +176,12 @@
170
176
  enable-background="new 0 0 512 512"
171
177
  xml:space="preserve"
172
178
  aria-labelledby="linkedin-title">
173
- <title id="linkedin-title">LinkedIn</title>
179
+ <title lang="en" id="linkedin-title">LinkedIn</title>
174
180
  <g>
175
- <path fill="#FFFFFF" d="M142.394,216.601h48.7v156.684h-48.7V216.601z M166.755,138.716
181
+ <path class="svg__fill--white" d="M142.394,216.601h48.7v156.684h-48.7V216.601z M166.755,138.716
176
182
  c15.567,0,28.219,12.651,28.219,28.226c0,15.588-12.651,28.24-28.219,28.24
177
183
  c-15.608,0-28.242-12.652-28.242-28.24C138.513,151.368,151.146,138.716,166.755,138.716"/>
178
- <path fill="#FFFFFF" d="M221.638,216.601h46.707v21.408h0.65
184
+ <path class="svg__fill--white" d="M221.638,216.601h46.707v21.408h0.65
179
185
  c6.502-12.316,22.385-25.305,46.076-25.305c49.314,0,58.416,32.454,58.416,74.639v85.941
180
186
  h-48.664v-76.199c0-18.168-0.334-41.54-25.302-41.54c-25.339,0-29.23,19.792-29.23,40.227
181
187
  v77.512h-48.653V216.601z"/>
@@ -191,114 +197,99 @@
191
197
  <a href="http://www.kcc.edu" target="_blank" rel="noopener">
192
198
  <svg version="1.1"
193
199
  id="KCC-text-logo"
200
+ role="image"
194
201
  class="footer__svg--logo img__responsive--svg mx-auto"
195
202
  xmlns="http://www.w3.org/2000/svg"
196
203
  xmlns:xlink="http://www.w3.org/1999/xlink"
197
- x="0px"
198
- y="0px"
204
+ x="0px" y="0px"
199
205
  width="416.394px"
200
206
  height="28.682px"
201
207
  viewBox="0 0 416.394 28.682"
202
208
  enable-background="new 0 0 416.394 28.682"
203
- xml:space="preserve">
209
+ xml:space="preserve"
210
+ aria-labelledby="kcc-text-logo-title">
204
211
  <title id="kcc-text-logo-title" lang="en">Kankakee Community College</title>
205
212
  <g>
206
- <polygon fill="#0F3B63"
207
- points="6.913,9.049 8.856,9.049 17.992,0.174 23.125,0.174 12.053,10.789 19.401,21.924
208
- 14.123,21.9248.098,12.615 6.155,12.615 4.176,21.924 0,21.924 4.623,0.174 8.799,0.174"/>
209
- <path fill="#0F3B63" d="M30.973,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088
210
- c-3.451,0-5.53-0.725-4.655-4.842 c0.777-3.654,2.907-4.67,6.676-4.67
211
- c1.856,0,3.677,0.029,4.184,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
212
- c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611
213
- c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
213
+ <polygon class="svg__fill--blue" points="6.913,9.049 8.856,9.049 17.992,0.174 23.125,0.174 12.053,10.789 19.401,21.924 14.123,21.924
214
+ 8.098,12.615 6.155,12.615 4.176,21.924 0,21.924 4.623,0.174 8.799,0.174 "></polygon>
215
+ <path class="svg__fill--blue" d="M30.973,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
216
+ c0.777-3.654,2.907-4.67,6.676-4.67c1.856,0,3.677,0.029,4.184,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
217
+ c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
214
218
  h-3.654L30.973,20.01z M24.714,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
215
- c0.45-2.117-1.104-2.176-2.902-2.176C26.655,15.08,25.176,15.08,24.714,17.256z"/>
216
- <path fill="#0F3B63" d="M44.589,6.699L44.103,8.99h0.116c1.286-2.232,3.163-2.465,5.309-2.465
217
- c4.002,0,4.869,1.652,4.08,5.365 l-2.133,10.033H47.82l2.053-9.656c0.468-2.205,0.136-2.959-2.213-2.959
218
- c-3.19,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654 l3.236-15.225H44.589z"/>
219
- <polygon fill="#0F3B63"
220
- points="60.645,12.615 61.544,12.615 67.064,6.699 71.182,6.699 64.266,13.863 69.048,21.924 64.64,21.924
221
- 61.014,15.109 60.115,15.109 58.666,21.924 55.012,21.924 59.635,0.174 63.289,0.174"/>
222
- <path fill="#0F3B63" d="M81.026,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088
223
- c-3.451,0-5.53-0.725-4.655-4.842c0.777-3.654,2.907-4.67,6.677-4.67c1.856,0,3.677,0.029,4.183,1.74
224
- h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334c-1.595,0-2.901,0.145-3.321,2.117h-3.654
225
- c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
219
+ c0.45-2.117-1.104-2.176-2.902-2.176C26.655,15.08,25.176,15.08,24.714,17.256z"></path>
220
+ <path class="svg__fill--blue" d="M44.589,6.699L44.103,8.99h0.116c1.286-2.232,3.163-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
221
+ l-2.133,10.033H47.82l2.053-9.656c0.468-2.205,0.136-2.959-2.213-2.959c-3.19,0-3.945,1.508-4.525,4.234l-1.781,8.381h-3.654
222
+ l3.236-15.225H44.589z"></path>
223
+ <polygon class="svg__fill--blue" points="60.645,12.615 61.544,12.615 67.064,6.699 71.182,6.699 64.266,13.863 69.048,21.924 64.64,21.924
224
+ 61.014,15.109 60.115,15.109 58.666,21.924 55.012,21.924 59.635,0.174 63.289,0.174 "></polygon>
225
+ <path class="svg__fill--blue" d="M81.026,20.01h-0.087c-1.157,2.031-3.402,2.088-5.171,2.088c-3.451,0-5.53-0.725-4.655-4.842
226
+ c0.777-3.654,2.907-4.67,6.677-4.67c1.856,0,3.677,0.029,4.183,1.74h0.116l0.419-1.973c0.524-2.465,0.506-3.334-2.54-3.334
227
+ c-1.595,0-2.901,0.145-3.321,2.117h-3.654c0.943-4.438,4.025-4.611,7.505-4.611c4.872,0,6.742,0.754,5.657,5.857l-2.028,9.541
226
228
  h-3.654L81.026,20.01z M74.768,17.256c-0.457,2.145,0.371,2.348,2.835,2.348c1.943,0,3.401-0.174,3.863-2.348
227
- c0.45-2.117-1.104-2.176-2.902-2.176C76.708,15.08,75.229,15.08,74.768,17.256z"/>
228
- <polygon fill="#0F3B63" points="93.356,12.615 94.255,12.615 99.776,6.699 103.894,6.699
229
- 96.977,13.863 101.759,21.924 97.352,21.924 93.725,15.109 92.826,15.109
230
- 91.377,21.924 87.724,21.924 92.347,0.174 96,0.174"/>
231
- <path fill="#0F3B63" d="M117.955,17.082c-1.018,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
229
+ c0.45-2.117-1.104-2.176-2.902-2.176C76.708,15.08,75.229,15.08,74.768,17.256z"></path>
230
+ <polygon class="svg__fill--blue" points="93.356,12.615 94.255,12.615 99.776,6.699 103.894,6.699 96.977,13.863 101.759,21.924
231
+ 97.352,21.924 93.725,15.109 92.826,15.109 91.377,21.924 87.724,21.924 92.347,0.174 96,0.174 "></polygon>
232
+ <path class="svg__fill--blue" d="M117.955,17.082c-1.018,4.785-3.821,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
232
233
  c1.159-5.451,2.535-7.83,8.683-7.83c6.263,0,6.716,1.826,5.304,8.469H107.93c-0.697,3.275-0.832,4.32,2.445,4.32
233
- c2.03,0,3.445,0.029,3.926-2.232H117.955z M115.238,12.674c0.666-3.133,0.251-3.365-2.736-3.365
234
- c-3.161,0-3.506,0.668-4.079,3.365 H115.238z"/>
235
- <path fill="#0F3B63" d="M134.484,17.082c-1.017,4.785-3.82,5.016-8.171,5.016
236
- c-5.829,0-6.623-1.855-5.372-7.742c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469
237
- H124.46c-0.696,3.275-0.831,4.32,2.445,4.32 c2.03,0,3.444,0.029,3.926-2.232H134.484z M131.768,12.674
238
- c0.666-3.133,0.252-3.365-2.735-3.365c-3.161,0-3.506,0.668-4.079,3.365 H131.768z"/>
239
- <path fill="#0F3B63" d="M162.747,7.453L163,6.264c0.536-2.521-0.412-2.695-4.066-2.695
240
- c-4.205,0-5.078,0.695-5.984,4.959 l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191
241
- c3.365,0,4.897-0.115,5.557-3.219l0.253-1.189h4.176l-0.302,1.422 c-1.307,6.553-4.998,6.322-10.441,6.553
242
- c-7.717,0.291-8.544-2.232-7.281-8.584l1.061-4.986C150.253,1.566,153.283,0,159.691,0
243
- c5.423,0,8.52,0.029,7.484,6.264l-0.252,1.189H162.747z"/>
244
- <path fill="#0F3B63" d="M182.254,14.326c-1.252,5.887-2.465,7.771-8.815,7.771s-6.763-1.885-5.511-7.771
234
+ c2.03,0,3.445,0.029,3.926-2.232H117.955z M115.238,12.674c0.666-3.133,0.251-3.365-2.736-3.365c-3.161,0-3.506,0.668-4.079,3.365
235
+ H115.238z"></path>
236
+ <path class="svg__fill--blue" d="M134.484,17.082c-1.017,4.785-3.82,5.016-8.171,5.016c-5.829,0-6.623-1.855-5.372-7.742
237
+ c1.159-5.451,2.535-7.83,8.683-7.83c6.264,0,6.716,1.826,5.305,8.469H124.46c-0.696,3.275-0.831,4.32,2.445,4.32
238
+ c2.03,0,3.444,0.029,3.926-2.232H134.484z M131.768,12.674c0.666-3.133,0.252-3.365-2.735-3.365c-3.161,0-3.506,0.668-4.079,3.365
239
+ H131.768z"></path>
240
+ <path class="svg__fill--blue" d="M162.747,7.453L163,6.264c0.536-2.521-0.412-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
241
+ l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.365,0,4.897-0.115,5.557-3.219l0.253-1.189h4.176l-0.302,1.422
242
+ c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.544-2.232-7.281-8.584l1.061-4.986C150.253,1.566,153.283,0,159.691,0
243
+ c5.423,0,8.52,0.029,7.484,6.264l-0.252,1.189H162.747z"></path>
244
+ <path class="svg__fill--blue" d="M182.254,14.326c-1.252,5.887-2.465,7.771-8.815,7.771s-6.763-1.885-5.511-7.771
245
245
  c1.258-5.916,2.471-7.801,8.82-7.801C183.1,6.525,183.511,8.41,182.254,14.326z M171.575,14.355
246
246
  c-0.862,4.061-0.793,4.959,2.455,4.959s3.7-0.898,4.563-4.959c0.875-4.117,0.811-5.047-2.438-5.047
247
- C172.909,9.309,172.451,10.238,171.575,14.355z"/>
248
- <path fill="#0F3B63" d="M190.516,6.699l-0.469,2.205h0.115c1.226-1.943,3.377-2.379,5.291-2.379
249
- s4.014,0.492,3.951,2.697h0.115c1.146-2.117,3.357-2.697,5.389-2.697c3.943,0,4.959,1.363,4.164,5.104
250
- l-2.189,10.295h-3.654l2.115-9.947 c0.32-1.914,0.016-2.668-1.984-2.668
251
- c-2.959,0-3.822,1.334-4.396,4.031l-1.824,8.584h-3.654l2.115-9.947
252
- c0.319-1.914,0.016-2.668-1.985-2.668c-2.958,0-3.821,1.334-4.395,4.031l-1.825,8.584
253
- h-3.653l3.235-15.225H190.516z"/>
254
- <path fill="#0F3B63" d="M217.312,6.699l-0.469,2.205h0.115c1.225-1.943,3.377-2.379,5.291-2.379
255
- s4.012,0.492,3.951,2.697h0.115 c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104
256
- l-2.188,10.295h-3.654l2.113-9.947 c0.32-1.914,0.018-2.668-1.984-2.668c-2.957,0-3.82,1.334-4.395,4.031
257
- l-1.824,8.584h-3.654l2.115-9.947 c0.318-1.914,0.016-2.668-1.986-2.668
258
- c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l3.236-15.225H217.312z"/>
259
- <path fill="#0F3B63" d="M247.338,21.924l0.5-2.348h-0.117c-1.271,2.029-3.262,2.521-5.35,2.521
260
- c-3.045,0-4.854-1.043-4.174-4.379 l2.344-11.02h3.654l-2.041,9.6c-0.463,2.174-0.438,3.016,1.91,3.016
261
- c2.814,0,3.965-1.189,4.525-3.828l1.869-8.787h3.654 l-3.236,15.225H247.338z"/>
262
- <path fill="#0F3B63" d="M261.391,6.699l-0.486,2.291h0.115c1.287-2.232,3.164-2.465,5.309-2.465
263
- c4.002,0,4.869,1.652,4.08,5.365 l-2.133,10.033h-3.654l2.053-9.656c0.469-2.205,0.137-2.959-2.213-2.959
264
- c-3.189,0-3.945,1.508-4.525,4.234l-1.781,8.381H254.5 l3.236-15.225H261.391z"/>
265
- <path fill="#0F3B63" d="M275.293,21.924h-3.654l3.236-15.225h3.654L275.293,21.924
266
- z M279.258,3.277h-3.654l0.658-3.104h3.654 L279.258,3.277z"/>
267
- <path fill="#0F3B63" d="M280.066,6.699h1.914l0.732-3.451h3.654l-0.732,3.451h5.828l-0.592,2.783h-5.828
268
- l-1.658,7.803 c-0.268,1.391-0.402,2.029,1.135,2.029c2.059,0,2.172-1.625,2.51-3.219h3.221
269
- c-0.924,4.611-2.379,6.002-6.322,6.002
270
- c-4.002,0-5.023-0.928-4.203-4.785l1.664-7.83h-1.914L280.066,6.699z"/>
271
- <path fill="#0F3B63" d="M299.35,22.533c-1.574,3.451-2.844,6.148-7.107,6.148
272
- c-0.521,0-1.025-0.088-1.541-0.117l0.586-2.754 c0.256,0.029,0.504,0.086,0.766,0.086
273
- c2.291,0,3.107-2.203,3.801-3.973h-1.768l-1.781-15.225h3.77l1.102,12.963
274
- h0.059l5.713-12.963 h3.713L299.35,22.533z"/>
275
- <path fill="#0F3B63" d="M331.379,7.453l0.254-1.189c0.535-2.521-0.414-2.695-4.066-2.695
276
- c-4.205,0-5.078,0.695-5.984,4.959 l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191
277
- c3.363,0,4.896-0.115,5.557-3.219l0.252-1.189h4.176l-0.301,1.422
278
- c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.545-2.232-7.281-8.584l1.061-4.986
279
- C318.885,1.566,321.914,0,328.324,0 c5.422,0,8.52,0.029,7.484,6.264l-0.254,1.189H331.379z"/>
280
- <path fill="#0F3B63" d="M350.887,14.326c-1.252,5.887-2.465,7.771-8.814,7.771c-6.352,0-6.764-1.885-5.512-7.771
247
+ C172.909,9.309,172.451,10.238,171.575,14.355z"></path>
248
+ <path class="svg__fill--blue" d="M190.516,6.699l-0.469,2.205h0.115c1.226-1.943,3.377-2.379,5.291-2.379s4.014,0.492,3.951,2.697h0.115
249
+ c1.146-2.117,3.357-2.697,5.389-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.189,10.295h-3.654l2.115-9.947
250
+ c0.32-1.914,0.016-2.668-1.984-2.668c-2.959,0-3.822,1.334-4.396,4.031l-1.824,8.584h-3.654l2.115-9.947
251
+ c0.319-1.914,0.016-2.668-1.985-2.668c-2.958,0-3.821,1.334-4.395,4.031l-1.825,8.584h-3.653l3.235-15.225H190.516z"></path>
252
+ <path class="svg__fill--blue" d="M217.312,6.699l-0.469,2.205h0.115c1.225-1.943,3.377-2.379,5.291-2.379s4.012,0.492,3.951,2.697h0.115
253
+ c1.146-2.117,3.357-2.697,5.387-2.697c3.943,0,4.959,1.363,4.164,5.104l-2.188,10.295h-3.654l2.113-9.947
254
+ c0.32-1.914,0.018-2.668-1.984-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l2.115-9.947
255
+ c0.318-1.914,0.016-2.668-1.986-2.668c-2.957,0-3.82,1.334-4.395,4.031l-1.824,8.584h-3.654l3.236-15.225H217.312z"></path>
256
+ <path class="svg__fill--blue" d="M247.338,21.924l0.5-2.348h-0.117c-1.271,2.029-3.262,2.521-5.35,2.521c-3.045,0-4.854-1.043-4.174-4.379
257
+ l2.344-11.02h3.654l-2.041,9.6c-0.463,2.174-0.438,3.016,1.91,3.016c2.814,0,3.965-1.189,4.525-3.828l1.869-8.787h3.654
258
+ l-3.236,15.225H247.338z"></path>
259
+ <path class="svg__fill--blue" d="M261.391,6.699l-0.486,2.291h0.115c1.287-2.232,3.164-2.465,5.309-2.465c4.002,0,4.869,1.652,4.08,5.365
260
+ l-2.133,10.033h-3.654l2.053-9.656c0.469-2.205,0.137-2.959-2.213-2.959c-3.189,0-3.945,1.508-4.525,4.234l-1.781,8.381H254.5
261
+ l3.236-15.225H261.391z"></path>
262
+ <path class="svg__fill--blue" d="M275.293,21.924h-3.654l3.236-15.225h3.654L275.293,21.924z M279.258,3.277h-3.654l0.658-3.104h3.654
263
+ L279.258,3.277z"></path>
264
+ <path class="svg__fill--blue" d="M280.066,6.699h1.914l0.732-3.451h3.654l-0.732,3.451h5.828l-0.592,2.783h-5.828l-1.658,7.803
265
+ c-0.268,1.391-0.402,2.029,1.135,2.029c2.059,0,2.172-1.625,2.51-3.219h3.221c-0.924,4.611-2.379,6.002-6.322,6.002
266
+ c-4.002,0-5.023-0.928-4.203-4.785l1.664-7.83h-1.914L280.066,6.699z"></path>
267
+ <path class="svg__fill--blue" d="M299.35,22.533c-1.574,3.451-2.844,6.148-7.107,6.148c-0.521,0-1.025-0.088-1.541-0.117l0.586-2.754
268
+ c0.256,0.029,0.504,0.086,0.766,0.086c2.291,0,3.107-2.203,3.801-3.973h-1.768l-1.781-15.225h3.77l1.102,12.963h0.059l5.713-12.963
269
+ h3.713L299.35,22.533z"></path>
270
+ <path class="svg__fill--blue" d="M331.379,7.453l0.254-1.189c0.535-2.521-0.414-2.695-4.066-2.695c-4.205,0-5.078,0.695-5.984,4.959
271
+ l-1.023,4.812c-0.896,4.35-0.553,5.191,3.826,5.191c3.363,0,4.896-0.115,5.557-3.219l0.252-1.189h4.176l-0.301,1.422
272
+ c-1.307,6.553-4.998,6.322-10.441,6.553c-7.717,0.291-8.545-2.232-7.281-8.584l1.061-4.986C318.885,1.566,321.914,0,328.324,0
273
+ c5.422,0,8.52,0.029,7.484,6.264l-0.254,1.189H331.379z"></path>
274
+ <path class="svg__fill--blue" d="M350.887,14.326c-1.252,5.887-2.465,7.771-8.814,7.771c-6.352,0-6.764-1.885-5.512-7.771
281
275
  c1.258-5.916,2.471-7.801,8.82-7.801C351.732,6.525,352.145,8.41,350.887,14.326z M340.209,14.355
282
276
  c-0.863,4.061-0.793,4.959,2.455,4.959c3.246,0,3.699-0.898,4.562-4.959c0.875-4.117,0.811-5.047-2.438-5.047
283
- S341.084,10.238,340.209,14.355z"/>
284
- <polygon fill="#0F3B63" points="356.027,21.924 352.375,21.924 356.998,0.174 360.65,0.174 "/>
285
- <polygon fill="#0F3B63" points="363.336,21.924 359.682,21.924 364.305,0.174 367.959,0.174 "/>
286
- <path fill="#0F3B63" d="M381.533,17.082c-1.018,4.785-3.822,5.016-8.172,5.016
287
- c-5.828,0-6.623-1.855-5.371-7.742 c1.158-5.451,2.533-7.83,8.682-7.83
288
- c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
289
- c2.029,0,3.445,0.029,3.926-2.232H381.533z M378.816,12.674
290
- c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365 H378.816z"/>
291
- <path fill="#0F3B63" d="M394.045,19.75h-0.086c-1.383,2-3.4,2.348-5.256,2.348c-5.221,0-5.219-2.871-4.27-7.336
277
+ S341.084,10.238,340.209,14.355z"></path>
278
+ <polygon class="svg__fill--blue" points="356.027,21.924 352.375,21.924 356.998,0.174 360.65,0.174 "></polygon>
279
+ <polygon class="svg__fill--blue" points="363.336,21.924 359.682,21.924 364.305,0.174 367.959,0.174 "></polygon>
280
+ <path class="svg__fill--blue" d="M381.533,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
281
+ c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
282
+ c2.029,0,3.445,0.029,3.926-2.232H381.533z M378.816,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
283
+ H378.816z"></path>
284
+ <path class="svg__fill--blue" d="M394.045,19.75h-0.086c-1.383,2-3.4,2.348-5.256,2.348c-5.221,0-5.219-2.871-4.27-7.336
292
285
  c0.992-4.67,1.924-8.236,7.58-8.236c2.145,0,3.729,0.465,4.23,2.465h0.117l0.342-2.291h3.654l-3.23,15.195
293
- c-1.166,5.482-3.182,6.787-8.75,6.787c-3.713,0-6.361-0.639-5.16-5.191h3.422
294
- c-0.445,2.088,0.271,2.406,2.33,2.406 c3.104,0,3.904-0.637,4.459-3.248L394.045,19.75
295
- z M388.279,13.863c-0.734,3.449-1.16,5.451,2.088,5.451 c3.654,0,4.043-1.826,4.812-5.451
296
- c0.691-3.248,0.475-4.555-2.686-4.555C389.971,9.309,389.092,10.035,388.279,13.863z"/>
297
- <path fill="#0F3B63" d="M415.289,17.082c-1.018,4.785-3.822,5.016-8.172,5.016
298
- c-5.828,0-6.623-1.855-5.371-7.742 c1.158-5.451,2.533-7.83,8.682-7.83
299
- c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
300
- c2.029,0,3.445,0.029,3.926-2.232H415.289z M412.572,12.674c0.666-3.133,0.25-3.365-2.736-3.365
301
- c-3.162,0-3.506,0.668-4.08,3.365 H412.572z"/>
286
+ c-1.166,5.482-3.182,6.787-8.75,6.787c-3.713,0-6.361-0.639-5.16-5.191h3.422c-0.445,2.088,0.271,2.406,2.33,2.406
287
+ c3.104,0,3.904-0.637,4.459-3.248L394.045,19.75z M388.279,13.863c-0.734,3.449-1.16,5.451,2.088,5.451
288
+ c3.654,0,4.043-1.826,4.812-5.451c0.691-3.248,0.475-4.555-2.686-4.555C389.971,9.309,389.092,10.035,388.279,13.863z"></path>
289
+ <path class="svg__fill--blue" d="M415.289,17.082c-1.018,4.785-3.822,5.016-8.172,5.016c-5.828,0-6.623-1.855-5.371-7.742
290
+ c1.158-5.451,2.533-7.83,8.682-7.83c6.264,0,6.717,1.826,5.305,8.469h-10.469c-0.697,3.275-0.832,4.32,2.445,4.32
291
+ c2.029,0,3.445,0.029,3.926-2.232H415.289z M412.572,12.674c0.666-3.133,0.25-3.365-2.736-3.365c-3.162,0-3.506,0.668-4.08,3.365
292
+ H412.572z"></path>
302
293
  </g>
303
294
  </svg>
304
295
  </a>
@@ -1,29 +1,23 @@
1
- <div class="row">
2
- <div class="col hero-slider__slider">{% for slide in page.slides %}
3
- {%- assign url_first_char = slide.url | slice: 0 -%}
4
- {%- if forloop.first == true -%}
5
- <div>
6
- <a {% if slide.url contains 'https://' or slide.url contains 'http:// %}target="_blank" href="{{ slide.url }}"{% elsif url_first_char == '.' or url_first_char == '/' %}href="{{ slide.url }}"{% else %}href="{{ page.baseurl }}{{ slide.url }}{% endif %}">
7
- <img src="{{page.baseurl}}{{slide.image}}" class="img-fluid hero-slider__slider--slide-img {% if slide.white_background %} hero-slider__slide-img--border{% endif %}" alt="{{slide.alt-text}}" />
8
- </a>
9
- {% if slide.text and slide.text != '' %}
10
- <div class="hero-slider__slider--heading-container text-center">
11
- <h3 class="hero-slider__slider--slide-heading">{{slide.text}}</h3>
12
- </div>
13
- {% endif %}
14
- </div>
15
- {% else %}
16
- <div>
17
- <a {% if slide.url contains 'https://' or slide.url contains 'http:// %}target="_blank" href="{{ slide.url }}"{% elsif url_first_char == '.' or url_first_char == '/' %}href="{{ slide.url }}"{% else %}href="{{ page.baseurl }}{{ slide.url }}{% endif %}">
18
- <img src="{{ page.baseurl }}assets/img/kcc-placeholder.png" data-src="{{page.baseurl}}{{slide.image}}" class="img-fluid hero-slider__slider--slide-img {% if slide.white_background %} hero-slider__slide-img--border{% endif %}" alt="{{slide.alt-text}}" />
19
- </a>
20
- {% if slide.text and slide.text != '' %}
21
- <div class="hero-slider__slider--heading-container text-center">
22
- <h3 class="hero-slider__slider--slide-heading">{{slide.text}}</h3>
23
- </div>
24
- {%- endif -%}
25
- </div>
26
- {%- endif -%}
27
- {% endfor %}
28
- </div>
29
- </div>
1
+
2
+ <div class="row">
3
+ <div class="col hero-slider__slider">
4
+ {% for slide in page.slides %}
5
+ {% assign url_first_char = slide.url | slice: 0 %}
6
+ {% if forloop.first == true %}
7
+ <div>
8
+ <a {% if slide.url contains "https://" or slide.url contains "http://" %}href="{{ slide.url }}"{% elsif url_first_char == '.' or url_first_char == '/' %}href="{{ slide.url }}"{% else %}href="{{ page.baseurl }}{{ slide.url }}{% endif %}"{% if slide.new_tab == true %} target="_blank" rel="noopener noreferrer"{% endif %}><img src="{{page.baseurl}}{{slide.image}}" class="img-fluid hero-slider__slider--slide-img {% if slide.white_background %} hero-slider__slide-img--border{% endif %}" alt="{{slide.alt-text}}" /></a>
9
+ {% if slide.text and slide.text != '' %}<div class="hero-slider__slider--heading-container text-center">
10
+ <h3 class="hero-slider__slider--slide-heading">{{slide.text}}</h3>
11
+ </div>{% endif %}
12
+ </div>
13
+ {% else %}
14
+ <div>
15
+ <a {% if slide.url contains "https://" or slide.url contains "http://" %}href="{{ slide.url }}"{% elsif url_first_char == "." or url_first_char == "/" %}href="{{ slide.url }}"{% else %}href="{{ page.baseurl }}{{ slide.url }}{% endif %}"{% if slide.new_tab == true %} target="_blank" rel="noopener noreferrer"{% endif %}><img src="{{ page.baseurl }}assets/img/kcc-placeholder.png" data-src="{{page.baseurl}}{{slide.image}}" class="img-fluid hero-slider__slider--slide-img {% if slide.white_background %} hero-slider__slide-img--border{% endif %}" alt="{{slide.alt-text}}" /></a>
16
+ {% if slide.text and slide.text != "" %}<div class="hero-slider__slider--heading-container text-center">
17
+ <h3 class="hero-slider__slider--slide-heading">{{slide.text}}</h3>
18
+ </div>{% endif %}
19
+ </div>
20
+ {% endif %}
21
+ {% endfor %}
22
+ </div>
23
+ </div>