ols-theme 0.9.0 → 1.0.1

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: 49793fc3ac688169748b7f2ed86796367b4261e34a15cda88daf748629471ecd
4
- data.tar.gz: 7190eda9a623b09c1996688b042b822169a5f106f7b52c57c10b66b743845715
3
+ metadata.gz: 41131c6545fe57ee985f88c9992563309c53afd92b399a70013c902f419c0278
4
+ data.tar.gz: a28d6177f078bcd2b9710c18a438a50fa1b9503abc6fce7e0e8d86b58d94c10e
5
5
  SHA512:
6
- metadata.gz: 0162c495fcddd47ecfdc46c80fcbaf07eb12c9b76764e14a4443313f43a99501fe91b90c936a3abd5603ca9cdac5aed16fbc9dca0f039896c4b7746ff400703e
7
- data.tar.gz: 0d51d56e59ad5237a91a2e99b71c01ef0210fb786ea457e9b1ff3ae866a147dbf2a4b62b6b72d27c0f5d130cac23fa1d91ed96369f04ebe168e63b4b660ef0b1
6
+ metadata.gz: 66f75ce5abee9b8699b81b03cba05c81195fa4c3c6b34a6dc8986a20c4a8e450ab8b6ae14885b300594c15fd2ec0a7a9a6c699022c1472db451e97b6adfff0c2
7
+ data.tar.gz: 2e910bcf613100ba61fe139cf55ed01d2cbdccef25bcfb5b4827e7485eb3463f6025bba93724d8c30620b197baf055b3e2c71189f262c7aeecb0d05803adf367
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
- The MIT License (MIT)
1
+ The MIT License
2
2
 
3
- Copyright (c) 2023 NPDebs
3
+ Copyright (c) 2023 Open Life Science Limited
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -19,7 +19,7 @@
19
19
  <div id="top-menu" class="navbar-menu">
20
20
  <div class="navbar-end">
21
21
  <div class="navbar-item has-dropdown is-hoverable">
22
- <a class="navbar-link" href="{% link openseeds/index.md %}">OLS program</a>
22
+ <a class="navbar-link" href="{% link openseeds/index.md %}">Open Seeds program</a>
23
23
  <div class="navbar-dropdown">
24
24
  <a class="navbar-item" href="{% link openseeds/index.md %}#applications"> Applications </a>
25
25
  <a class="navbar-item" href="{% link about.md %}"> The program itself </a>
@@ -39,10 +39,8 @@
39
39
  <div class="navbar-dropdown">
40
40
  <a class="navbar-item" href="{% link openseeds/ols-8/index.md %}"> Syllabus </a>
41
41
  <a class="navbar-item" href="{% link openseeds/ols-8/schedule.md %}"> Schedule</a>
42
- <!--<a class="navbar-item" href="/ols-7/projects-participants/"> Projects & Participants</a>
43
- <a class="navbar-item" href="/ols-7#mentors"> Mentors & Experts </a>
44
- <a class="navbar-item" href="/ols-7#collaborators"> Collaborators </a>
45
- <a class="navbar-item" href="/ols-7#resources"> Resources </a>-->
42
+ <a class="navbar-item" href="{% link openseeds/ols-8/projects-participants.md %}"> Projects & Participants</a>
43
+ <a class="navbar-item" href="{% link openseeds/ols-8/index.md %}#mentors"> Mentors & Experts </a>
46
44
  </div>
47
45
  </div>
48
46
 
@@ -0,0 +1,492 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+ $black: #000;
7
+ $white: #fff;
8
+ $dark-green: #48b87d;
9
+
10
+ $bg-image: #333;
11
+ $hero-text-color: $white;
12
+ $text-shadow: $black;
13
+
14
+ $link: $dark-green;
15
+ $link-visited: $link;
16
+ $link-hover: $dark-green;
17
+ $link-focus: $link-hover;
18
+ $link-active: $link-hover;
19
+
20
+ @import 'bulma/bulma.sass';
21
+ @import 'bulma-collapsible.sass';
22
+
23
+ @mixin reset-links() {
24
+ a {
25
+ border-bottom: 0;
26
+ color: $link;
27
+ font-weight: 500;
28
+
29
+ &:active,
30
+ &:focus,
31
+ &:hover {
32
+ background: none;
33
+ color: $link-hover;
34
+ }
35
+ }
36
+ }
37
+
38
+ img {
39
+ display: block;
40
+ margin-left: auto;
41
+ margin-right: auto;
42
+ }
43
+
44
+ .navbar {
45
+ .navbar-dropdown {
46
+ border-top: none;
47
+ }
48
+
49
+ .navbar-item {
50
+ img {
51
+ max-height: 3.5rem;
52
+ margin-top: -5px;
53
+ margin-bottom: -5px;
54
+ }
55
+ }
56
+
57
+ .navbar-previous-title {
58
+ font-weight: bold;
59
+ }
60
+ }
61
+
62
+ .hero {
63
+ background-clip: border-box;
64
+ background-color: $bg-image;
65
+ background-origin: padding-box;
66
+ background-position: center center;
67
+ background-repeat: no-repeat;
68
+ background-size: cover;
69
+ height: auto;
70
+ width: 100%;
71
+
72
+ &.no-image {
73
+ height: auto;
74
+ background-color: $bg-image;
75
+ }
76
+
77
+ @include tablet() {
78
+ background-attachment: fixed;
79
+ height: 50vh;
80
+ min-height: 300px;
81
+
82
+ &.no-image {
83
+ min-height: 40vh;
84
+ }
85
+ }
86
+ }
87
+
88
+ .hero-body {
89
+ padding-top: 160px;
90
+ text-align: center;
91
+ text-shadow: 2px 2px 5px $text-shadow;
92
+
93
+ h1,
94
+ p {
95
+ color: $hero-text-color;
96
+ }
97
+
98
+ .no-image & {
99
+ padding-top: 80px;
100
+ text-shadow: none;
101
+
102
+ p {
103
+ color: #464646;
104
+ }
105
+ }
106
+
107
+ @include tablet() {
108
+ padding-top: 20vh;
109
+ }
110
+ }
111
+
112
+ .hero-foot {
113
+ color: $hero-text-color;
114
+
115
+ .credit {
116
+ text-align: right;
117
+ font-size: 0.6em;
118
+ text-shadow: 1px 1px 1px $text-shadow;
119
+ }
120
+ }
121
+
122
+ .content {
123
+ a {
124
+ border-bottom: 2px solid $link;
125
+ color: inherit;
126
+ font-weight: 500;
127
+ padding: 2px;
128
+
129
+ &:active,
130
+ &:focus,
131
+ &:hover {
132
+ background-color: $link;
133
+ border-radius: 2px;
134
+ color: $white;
135
+ }
136
+ }
137
+ }
138
+
139
+ .people {
140
+ margin-bottom: 1em;
141
+
142
+ .media {
143
+ height: 230px;
144
+ }
145
+ .people-description {
146
+ height: 150px;
147
+ }
148
+
149
+ #people-bio {
150
+ height: auto;
151
+ }
152
+
153
+ @include mobile() {
154
+ .people-card {
155
+ margin-bottom: 1em;
156
+ }
157
+
158
+ .people-card-meta {
159
+ overflow-x: initial;
160
+ }
161
+
162
+ .people-card-avatar {
163
+ display: none;
164
+ }
165
+
166
+ .media, .people-description {
167
+ height: auto;
168
+ }
169
+ }
170
+
171
+ @include tablet() {
172
+ display: grid;
173
+ grid-gap: 2em;
174
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
175
+ }
176
+
177
+ .title.is-4 {
178
+ margin-bottom: 0.5em;
179
+ }
180
+
181
+ .people-card-meta {
182
+ @include reset-links();
183
+ }
184
+
185
+ .people-card-meta-twitter {
186
+ font-weight: 600;
187
+ }
188
+
189
+ .people-description {
190
+ padding-left: 0px;
191
+ padding-right: 0px;
192
+ }
193
+
194
+ .people-description-question {
195
+ font-style: italic;
196
+ }
197
+
198
+ .image {
199
+ margin-left: 0px;
200
+ margin-right: 0px;
201
+ }
202
+ }
203
+
204
+ .people-badge {
205
+ height: 2em;
206
+ border-radius: 50%;
207
+ margin-left: 0.25em;
208
+ margin-right: 0.25em;
209
+ vertical-align: middle;
210
+ display: inline;
211
+ }
212
+
213
+ .entities {
214
+ @include mobile() {
215
+ .card {
216
+ margin-bottom: 1em;
217
+ }
218
+ }
219
+
220
+ @include tablet() {
221
+ display: grid;
222
+ grid-gap: 1em;
223
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
224
+ }
225
+
226
+ .is-3by1 {
227
+ margin-top: 2em;
228
+ }
229
+
230
+ .entity-logo {
231
+ max-height: 100%;
232
+ max-width: 100%;
233
+ width: auto !important;
234
+ height: auto !important;
235
+ position: absolute !important;
236
+ }
237
+
238
+ .entity-description-question {
239
+ font-style: italic;
240
+ }
241
+
242
+ .entity-card-meta {
243
+ @include reset-links();
244
+ }
245
+ }
246
+
247
+ .post {
248
+ display: flex;
249
+ justify-content: center;
250
+ align-items: center;
251
+ flex-wrap: wrap;
252
+
253
+ .card {
254
+ background-color: #fff;
255
+ box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.28);
256
+ height: 100%;
257
+ width: fit-content;
258
+ }
259
+
260
+ .image {
261
+ height: 300px;
262
+ width: auto;
263
+ overflow: hidden;
264
+
265
+ img {
266
+ max-height: 100%;
267
+ object-fit: cover;
268
+ }
269
+ }
270
+
271
+
272
+ .card-content {
273
+ padding: 2rem;
274
+
275
+ .content .title {
276
+ height: 250px;
277
+ }
278
+ }
279
+
280
+ @include mobile() {
281
+ .card {
282
+ margin-bottom: 1em;
283
+
284
+ .media-content {
285
+ overflow-x: initial;
286
+ }
287
+
288
+ .media-left {
289
+ display: none;
290
+ }
291
+ }
292
+
293
+ .image {
294
+ height: auto;
295
+ }
296
+ .card-content .content .title {
297
+ height: auto;
298
+ }
299
+ }
300
+
301
+ @include tablet() {
302
+ display: grid;
303
+ grid-gap: 2em;
304
+ grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
305
+ }
306
+
307
+ .subtitle {
308
+ font-size: 1.1rem;
309
+ color: #464646;
310
+ }
311
+
312
+ .title {
313
+ a {
314
+ border-bottom: none;
315
+ color: inherit;
316
+ padding: 2px;
317
+
318
+ &:active,
319
+ &:focus,
320
+ &:hover {
321
+ color: $black;
322
+ background: none;
323
+ }
324
+ }
325
+ }
326
+
327
+ figure {
328
+ margin-top: 2em;
329
+ }
330
+ }
331
+
332
+ .calendar {
333
+ border: 0;
334
+ width: 100%;
335
+ height: 350px;
336
+ }
337
+
338
+ .twitter-tweet {
339
+ margin: 0 auto;
340
+ max-width: 550px;
341
+ text-align: center;
342
+ }
343
+
344
+ .community {
345
+ margin-bottom: 1em;
346
+
347
+ .card {
348
+ box-shadow: none;
349
+ }
350
+
351
+ .card-content {
352
+ padding-top: 1em;
353
+ padding-left: 0em;
354
+ padding-right: 0em;
355
+ padding-bottom: 0em;
356
+ }
357
+
358
+ @include mobile() {
359
+ .people-card {
360
+ margin-bottom: 1em;
361
+ }
362
+
363
+ .people-card-meta {
364
+ overflow-x: initial;
365
+ }
366
+
367
+ display: grid;
368
+ grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
369
+ }
370
+
371
+ @include tablet() {
372
+ display: grid;
373
+ grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
374
+ }
375
+
376
+ .image {
377
+ margin-left: 0px;
378
+ margin-right: 0px;
379
+ }
380
+
381
+ a {
382
+ border-bottom: none;
383
+ color: inherit;
384
+
385
+ &:active,
386
+ &:focus,
387
+ &:hover {
388
+ background: none;
389
+ }
390
+ }
391
+ }
392
+
393
+ .peoples {
394
+ margin-top: 1em;
395
+ }
396
+
397
+ code {
398
+ background-color: #DBDBDB;
399
+ color: #85001B;
400
+ font-weight: bold;
401
+ }
402
+
403
+ .schedule-overview{
404
+ width: 80%;
405
+ display: block;
406
+ margin-left: auto;
407
+ margin-right: auto;
408
+ margin-top: 25px;
409
+ margin-bottom: 20px;
410
+ }
411
+
412
+ // table responsiveness (mobile)
413
+ @media screen and (max-width: 768px) and (min-width: 320px) {
414
+ table {
415
+ font-size: 1em;
416
+ line-height: 1.5;
417
+ display: block;
418
+ overflow-x: auto;
419
+ padding-bottom: 20px;
420
+ }
421
+ }
422
+
423
+ .field {
424
+ padding: 30px;
425
+ }
426
+
427
+ .is-hidden {
428
+ display: none;
429
+ }
430
+
431
+
432
+ .links {
433
+ .hero {
434
+ background-color: $dark-green;
435
+ max-height: 500px;
436
+ min-height: 250px;
437
+ height: 10vh;
438
+
439
+ .hero-body {
440
+ padding-top: 20px;
441
+
442
+ img {
443
+ max-width: 120px;
444
+ margin: 20px auto;
445
+ padding: 12px;
446
+ border-radius: 12px;
447
+ background-color: $white;
448
+ }
449
+ }
450
+ }
451
+
452
+ .section {
453
+ padding-top: 20px;
454
+
455
+ .button {
456
+ background-color: $dark-green;
457
+ color: $white;
458
+ text-shadow: 2px 2px 5px $black;
459
+ margin: 20px auto;
460
+ padding: 20px auto;
461
+ min-height: 50px;
462
+ }
463
+ }
464
+
465
+ }
466
+
467
+
468
+ // menu
469
+ .menu {
470
+ font-size: small;
471
+
472
+ ul {
473
+ margin-left: 0px;
474
+ margin-right: 2em;
475
+
476
+ list-style-type: none;
477
+
478
+ ul {
479
+ list-style-type: none;
480
+
481
+ ul {
482
+ list-style-type: none;
483
+
484
+ }
485
+ }
486
+ }
487
+
488
+ }
489
+
490
+ .columns-toc {
491
+ margin-top: 2em;
492
+ }
Binary file
Binary file
@@ -0,0 +1 @@
1
+ !function webpackUniversalModuleDefinition(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.bulmaCollapsible=t():e.bulmaCollapsible=t()}(window,function(){return function(e){var t={};function __webpack_require__(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,__webpack_require__),r.l=!0,r.exports}return __webpack_require__.m=e,__webpack_require__.c=t,__webpack_require__.d=function(e,t,n){__webpack_require__.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.t=function(e,t){if(1&t&&(e=__webpack_require__(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(__webpack_require__.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)__webpack_require__.d(n,r,function(t){return e[t]}.bind(null,r));return n},__webpack_require__.n=function(e){var t=e&&e.__esModule?function getDefault(){return e.default}:function getModuleExports(){return e};return __webpack_require__.d(t,"a",t),t},__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=12)}([function(e,t){function _getPrototypeOf(t){return e.exports=_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(e){return e.__proto__||Object.getPrototypeOf(e)},_getPrototypeOf(t)}e.exports=_getPrototypeOf},function(e,t){e.exports=function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function _defineProperties(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function _createClass(e,t,n){return t&&_defineProperties(e.prototype,t),n&&_defineProperties(e,n),e}},function(e,t){e.exports=function _assertThisInitialized(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t,n){var r=n(8);e.exports=function _objectSpread(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),o.forEach(function(t){r(e,t,n[t])})}return e}},function(e,t,n){var r=n(6),o=n(3);e.exports=function _possibleConstructorReturn(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){function _typeof2(e){return(_typeof2="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof2(e){return typeof e}:function _typeof2(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function _typeof(t){return"function"==typeof Symbol&&"symbol"===_typeof2(Symbol.iterator)?e.exports=_typeof=function _typeof(e){return _typeof2(e)}:e.exports=_typeof=function _typeof(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":_typeof2(e)},_typeof(t)}e.exports=_typeof},function(e,t,n){var r=n(11);e.exports=function _inherits(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t){e.exports=function _defineProperty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){n(0);var r=n(10);function _get(t,n,o){return"undefined"!=typeof Reflect&&Reflect.get?e.exports=_get=Reflect.get:e.exports=_get=function _get(e,t,n){var o=r(e,t);if(o){var i=Object.getOwnPropertyDescriptor(o,t);return i.get?i.get.call(n):i.value}},_get(t,n,o||t)}e.exports=_get},function(e,t,n){var r=n(0);e.exports=function _superPropBase(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&null!==(e=r(e)););return e}},function(e,t){function _setPrototypeOf(t,n){return e.exports=_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(e,t){return e.__proto__=t,e},_setPrototypeOf(t,n)}e.exports=_setPrototypeOf},function(e,t,n){"use strict";n.r(t);var r=n(1),o=n.n(r),i=n(2),s=n.n(i),l=n(5),a=n.n(l),c=n(3),u=n.n(c),f=n(0),p=n.n(f),d=n(9),h=n.n(d),_=n(7),y=n.n(_),v=n(4),m=n.n(v),b=function(){function EventEmitter(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];o()(this,EventEmitter),this._listeners=new Map(e),this._middlewares=new Map}return s()(EventEmitter,[{key:"listenerCount",value:function listenerCount(e){return this._listeners.has(e)?this._listeners.get(e).length:0}},{key:"removeListeners",value:function removeListeners(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];null!==t?Array.isArray(t)?name.forEach(function(t){return e.removeListeners(t,n)}):(this._listeners.delete(t),n&&this.removeMiddleware(t)):this._listeners=new Map}},{key:"middleware",value:function middleware(e,t){var n=this;Array.isArray(e)?name.forEach(function(e){return n.middleware(e,t)}):(Array.isArray(this._middlewares.get(e))||this._middlewares.set(e,[]),this._middlewares.get(e).push(t))}},{key:"removeMiddleware",value:function removeMiddleware(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;null!==t?Array.isArray(t)?name.forEach(function(t){return e.removeMiddleware(t)}):this._middlewares.delete(t):this._middlewares=new Map}},{key:"on",value:function on(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(Array.isArray(e))e.forEach(function(e){return n.on(e,t)});else{var o=(e=e.toString()).split(/,|, | /);o.length>1?o.forEach(function(e){return n.on(e,t)}):(Array.isArray(this._listeners.get(e))||this._listeners.set(e,[]),this._listeners.get(e).push({once:r,callback:t}))}}},{key:"once",value:function once(e,t){this.on(e,t,!0)}},{key:"emit",value:function emit(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];e=e.toString();var o=this._listeners.get(e),i=null,s=0,l=r;if(Array.isArray(o))for(o.forEach(function(a,c){r||(i=n._middlewares.get(e),Array.isArray(i)?(i.forEach(function(n){n(t,function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;null!==e&&(t=e),s++},e)}),s>=i.length&&(l=!0)):l=!0),l&&(a.once&&(o[c]=null),a.callback(t))});-1!==o.indexOf(null);)o.splice(o.indexOf(null),1)}}]),EventEmitter}(),g=n(8),w=n.n(g),k=n(6),O=n.n(k),E=function isFunction(e){return"function"==typeof e},x=function isString(e){return"string"==typeof e||!!e&&"object"===O()(e)&&"[object String]"===Object.prototype.toString.call(e)},P=function isNode(e){try{return Node.prototype.cloneNode.call(e,!1),!0}catch(e){return!1}},S=function isNodeList(e){return NodeList.prototype.isPrototypeOf(e)},j=/^(?:f(?:alse)?|no?|0+)$/i,C=function uuid(){return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"")+([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g,function(e){return(e^crypto.getRandomValues(new Uint8Array(1))[0]&15>>e/4).toString(16)})},A=function detectSupportsPassive(){var e=!1;if("undefined"!=typeof window&&"function"==typeof window.addEventListener){var t=Object.defineProperty({},"passive",{get:function get(){return e=!0,!0}}),n=function noop(){};window.addEventListener("testPassive",n,t),window.removeEventListener("testPassive",n,t)}return e},T=function querySelectorAll(e,t){return E(e)?e(t||("undefined"!=typeof document?document:null)):x(e)?t&&P(t)?t.querySelectorAll(e):"undefined"!=typeof document?document.querySelectorAll(e):null:P(e)?[e]:S(e)?e:null},q=function optionsFromDataset(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return P(e)&&e.dataset?Object.keys(e.dataset).filter(function(e){return Object.keys(t).includes(e)}).reduce(function(t,n){return m()({},t,w()({},n,e.dataset[n]))},{}):{}};"undefined"==typeof Node||Node.prototype.on||(Node.prototype.on=function(e,t){var n=this;return Array.isArray(e)||(e=e.split(" ")),e.forEach(function(e){n.addEventListener(e.trim(),t,!!A()&&{passive:!1})}),this}),"undefined"==typeof NodeList||NodeList.prototype.on||(NodeList.prototype.on=function(e,t){return this.forEach(function(n){n.on(e,t)}),this}),"undefined"==typeof Node||Node.prototype.off||(Node.prototype.off=function(e,t){var n=this;return Array.isArray(e)||(e=e.split(" ")),e.forEach(function(e){n.removeEventListener(e.trim(),t,!!A()&&{passive:!1})}),this}),"undefined"==typeof NodeList||NodeList.prototype.off||(NodeList.prototype.off=function(e,t){return this.forEach(function(n){n.off(e,t)}),this});var L=function(e){function Component(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(o()(this,Component),(t=a()(this,p()(Component).call(this))).element=x(e)?t.options.container.querySelector(e):e,!t.element)throw new Error("An invalid selector or non-DOM node has been provided for ".concat(t.constructor.name,"."));return t.element[t.constructor.name]=t.constructor._interface.bind(u()(t)),t.element[t.constructor.name].Constructor=t.constructor.name,t.id=C(t.constructor.name+"-"),t.options=m()({},r,n,q(t.element,r)),t}return y()(Component,e),s()(Component,null,[{key:"attach",value:function attach(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=new Array;return null===t?o:(n=m()({},r,n,q(this.element,r)),(T(t,n.container)||[]).forEach(function(r){void 0===r[e.constructor.name]?o.push(new e(r,m()({selector:t},n))):o.push(r[e.constructor.name])}),o)}},{key:"_interface",value:function _interface(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if("string"==typeof e){if(void 0===this[e])throw new TypeError('No method named "'.concat(e,'"'));return this[e](e)}return this}}]),Component}(b),N={allowMultiple:!1,container:"undefined"!=typeof document?document:null};n.d(t,"default",function(){return M});var M=function(e){function bulmaCollapsible(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return o()(this,bulmaCollapsible),(t=a()(this,p()(bulmaCollapsible).call(this,e,n,N))).onTriggerClick=t.onTriggerClick.bind(u()(t)),t.onTransitionEnd=t.onTransitionEnd.bind(u()(t)),t._init(),t}return y()(bulmaCollapsible,e),s()(bulmaCollapsible,[{key:"_init",value:function _init(){if(this._originalHeight=this.element.style.height,this._parent=this.element.dataset.parent,this._parent){var e=this.options.container.querySelector("#".concat(this._parent));this._siblings=T(this.options.selector,e)||[]}this._triggers=this.options.container.querySelectorAll('[data-action="collapse"][href="#'.concat(this.element.id,'"], [data-action="collapse"][data-target="').concat(this.element.id,'"]'))||null,this._triggers&&this._triggers.on("click touch",this.onTriggerClick),this._transitionEvent=function whichTransitionEvent(){var e=document.createElement("fakeelement"),t={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(var n in t)if(void 0!==e.style[n])return t[n]}(),this._transitionEvent&&this.element.on(this._transitionEvent,this.onTransitionEnd),this.element.classList.contains("is-active")?this.expand():this.collapse()}},{key:"destroy",value:function destroy(){this._triggers&&this._triggers.off("click touch",this.onTriggerClick,!1)}},{key:"collapsed",value:function collapsed(){return this._collapsed}},{key:"expand",value:function expand(){var e=this;(void 0===this._collapsed||this._collapsed)&&(this.emit("before:expand",this),this._collapsed=!1,this._parent&&!function BooleanParse(e){return!j.test(e)&&!!e}(this.options.allowMultiple)&&this._siblings.forEach(function(t){t.isSameNode(e.element)||t.bulmaCollapsible&&t.bulmaCollapsible("close")}),this.element.style.height=this.element.scrollHeight+"px",this.element.classList.add("is-active"),this.element.setAttribute("aria-expanded",!0),this._triggers&&this._triggers.forEach(function(e){e.classList.add("is-active")}),this.emit("after:expand",this))}},{key:"open",value:function open(){this.expand()}},{key:"collapse",value:function collapse(){void 0!==this._collapsed&&this._collapsed||(this.emit("before:collapse",this),this._collapsed=!0,this.element.style.height=0,this.element.classList.remove("is-active"),this.element.setAttribute("aria-expanded",!1),this._triggers&&this._triggers.forEach(function(e){e.classList.remove("is-active")}),this.emit("after:collapse",this))}},{key:"close",value:function close(){this.collapse()}},{key:"onTriggerClick",value:function onTriggerClick(e){e.preventDefault(),this.collapsed()?(e.currentTarget.classList.add("is-active"),this.expand()):(e.currentTarget.classList.remove("is-active"),this.collapse())}},{key:"onTransitionEnd",value:function onTransitionEnd(e){this._collapsed||(this.element.style.height=this._originalHeight)}}],[{key:"attach",value:function attach(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:".is-collapsible",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return h()(p()(bulmaCollapsible),"attach",this).call(this,e,t,N)}}]),bulmaCollapsible}(L)}]).default});
@@ -0,0 +1,21 @@
1
+ // Searchbar functionality
2
+
3
+ function searchPosts() {
4
+ // Find the cards
5
+ let cards = document.querySelectorAll('.card')
6
+ // Locate search input
7
+ let search_query = document.getElementById('searchbar').value;
8
+ // Loop through the cards
9
+ for (var i = 0; i < cards.length; i++) {
10
+ // If text is in the card:
11
+ if (cards[i].innerHTML.toLowerCase()
12
+ // AND if the text matches the search query:
13
+ .includes(search_query.toLowerCase())) {
14
+ // THEN remove the '.is-hidden' class
15
+ cards[i].classList.remove('is-hidden');
16
+ } else {
17
+ // Otherwise, add the class:
18
+ cards[i].classList.add('is-hidden');
19
+ }
20
+ }
21
+ };
@@ -0,0 +1,53 @@
1
+ document.addEventListener('DOMContentLoaded', () => {
2
+
3
+ // Get all "navbar-burger" elements
4
+ const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
5
+
6
+ // Check if there are any navbar burgers
7
+ if ($navbarBurgers.length > 0) {
8
+
9
+ // Add a click event on each of them
10
+ $navbarBurgers.forEach( el => {
11
+ el.addEventListener('click', () => {
12
+
13
+ // Get the target from the "data-target" attribute
14
+ const target = el.dataset.target;
15
+ const $target = document.getElementById(target);
16
+
17
+ // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
18
+ el.classList.toggle('is-active');
19
+ $target.classList.toggle('is-active');
20
+
21
+ });
22
+ });
23
+ }
24
+
25
+ bulmaCollapsible.attach();
26
+ });
27
+
28
+ document.addEventListener('DOMContentLoaded', function() {
29
+ let cardToggles = document.getElementsByClassName('card-toggle');
30
+ for (let i = 0; i < cardToggles.length; i++) {
31
+ cardToggles[i].addEventListener('click', e => {
32
+ e.currentTarget.parentElement.parentElement.childNodes[3].classList.toggle('is-hidden');
33
+ });
34
+ }
35
+ });
36
+
37
+ document.addEventListener('DOMContentLoaded', function() {
38
+ let cardToggles = document.getElementsByClassName('expertise-toggle');
39
+ for (let i = 0; i < cardToggles.length; i++) {
40
+ cardToggles[i].addEventListener('click', e => {
41
+ e.currentTarget.parentElement.querySelector(".peoples").classList.toggle('is-hidden');
42
+ });
43
+ }
44
+ });
45
+
46
+ document.addEventListener('DOMContentLoaded', function() {
47
+ let cardToggles = document.getElementsByClassName('expertise-detail-toggle');
48
+ for (let i = 0; i < cardToggles.length; i++) {
49
+ cardToggles[i].addEventListener('click', e => {
50
+ e.currentTarget.parentElement.parentElement.querySelector(".expertise-detail").classList.toggle('is-hidden');
51
+ });
52
+ }
53
+ });
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ols-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - NPDebs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-26 00:00:00.000000000 Z
11
+ date: 2023-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -33,20 +33,8 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - LICENSE.txt
35
35
  - README.md
36
- - _includes/announcement-blog-metadata.html
37
- - _includes/cohort-loop.html
38
- - _includes/cohort-metadata.html
39
36
  - _includes/default-footer.html
40
37
  - _includes/default-header.html
41
- - _includes/detailed-schedule.md
42
- - _includes/external-entities.html
43
- - _includes/overall-schedule.md
44
- - _includes/people.html
45
- - _includes/projects-participants.html
46
- - _includes/schedule.md
47
- - _includes/timeline.md
48
- - _includes/toc.html
49
- - _includes/week.md
50
38
  - _layouts/base.html
51
39
  - _layouts/default.html
52
40
  - _layouts/index.html
@@ -117,6 +105,12 @@ files:
117
105
  - _sass/bulma/sass/utilities/functions.sass
118
106
  - _sass/bulma/sass/utilities/initial-variables.sass
119
107
  - _sass/bulma/sass/utilities/mixins.sass
108
+ - assets/css/custom.scss
109
+ - assets/images/logo.png
110
+ - assets/images/open-seeds-logo.png
111
+ - assets/js/bulma-collapsible.min.js
112
+ - assets/js/posts.js
113
+ - assets/js/scripts.js
120
114
  homepage: https://we-are-ols.org/
121
115
  licenses:
122
116
  - MIT
@@ -1,78 +0,0 @@
1
- {% assign cohort = include.cohort | strip %}
2
- {% assign people = site.data.people %}
3
- {% assign cohort_data = site.data.openseeds[cohort] %}
4
- {% assign projects = cohort_data.projects %}
5
- {% assign experts = cohort_data.metadata.experts %}
6
-
7
- {% assign cohorts = site.data.openseeds | sort %}
8
- {% for c in cohorts %}
9
- {% if c[0] == cohort %}
10
- {% assign current_cohort_index = forloop.index0 %}
11
- {% endif %}
12
- {% endfor %}
13
- {% assign prev_cohort_index = current_cohort_index | minus: 1 %}
14
- {% for c in cohorts %}
15
- {% if forloop.index0 == prev_cohort_index %}
16
- {% assign prev_cohort = c %}
17
- {% endif %}
18
- {% endfor %}
19
-
20
- <!-- extract previous participants and mentors and count them later among mentors -->
21
- {% assign prev_projects = prev_cohort[1].projects %}
22
- {% assign prev_participants = '' %}
23
- {% assign prev_mentors = '' %}
24
- {% for project in prev_projects %}
25
- {% for p in project.participants %}
26
- {% capture prev_participants %}{{ prev_participants }}, {{ p }}{% endcapture %}
27
- {% endfor %}
28
- {% for m in project.mentors %}
29
- {% capture prev_mentors %}{{ prev_mentors }}, {{ m }}{% endcapture %}
30
- {% endfor %}
31
- {% endfor %}
32
-
33
- {% assign all-participants = '' %}
34
- {% assign all-p-countries = '' %}
35
- {% assign all-mentors = '' %}
36
- {% assign all-m-countries = '' %}
37
- {% assign all-keywords = '' %}
38
- {% assign prev-part-count = 0 %}
39
- {% assign prev-mentor-count = 0 %}
40
-
41
- <!-- parse project participants, mentors and their countries -->
42
- {% for project in projects %}
43
- {% for p in project.participants %}
44
- {% capture all-participants %}{{ all-participants }}, [{{ people[p].first-name }} {{ people[p].last-name }}]({% link openseeds/{{ cohort }}/projects-participants.md %}#{{ p }}){% endcapture %}
45
- {% assign p_country = people[p].country | strip %}
46
- {% if p_country != '' %}
47
- {% capture all-p-countries %}{{ all-p-countries }}, {{ p_country }}{% endcapture %}
48
- {% endif %}
49
- {% endfor %}
50
-
51
- {% for m in project.mentors %}
52
- {% capture all-mentors %}{{ all-mentors }}, [{{ people[m].first-name }} {{ people[m].last-name }}]({% link openseeds/{{ cohort }}/index.md %}#{{ m }}){% endcapture %}
53
- {% assign m_country = people[m].country | strip %}
54
- {% if m_country != '' %}
55
- {% capture all-m-countries %}{{ all-m-countries }}, {{ m_country }}{% endcapture %}
56
- {% endif %}
57
- <!-- add +1 if participant in previous cohort -->
58
- {% if prev_participants contains m %}
59
- {% assign prev-part-count = prev-part-count | plus: 1 %}
60
- {% endif %}
61
- <!-- add +1 if mentor in previous cohort -->
62
- {% if prev_mentors contains m %}
63
- {% assign prev-mentor-count = prev-mentor-count | plus: 1 %}
64
- {% endif %}
65
- {% endfor %}
66
-
67
- <!-- parse keywords -->
68
- {% for k in project.keywords %}
69
- {% capture all-keywords %}{{ all-keywords }}, {{ k }}{% endcapture %}
70
- {% endfor %}
71
- {% endfor %}
72
-
73
- <!-- transform into lists -->
74
- {% assign p-participants = all-participants | remove_first: ', ' | split: ", " | uniq | sort %}
75
- {% assign p-countries = all-p-countries | remove_first: ', ' | split: ", " | uniq | sort %}
76
- {% assign p-mentors = all-mentors | remove_first: ', ' | split: ", " | uniq | sort %}
77
- {% assign m-countries = all-m-countries | remove_first: ', ' | split: ", " | uniq | sort %}
78
- {% assign keywords = all-keywords | remove_first: ', ' | split: ", " | uniq | sort %}
@@ -1,41 +0,0 @@
1
- {% assign all_participants = '' %}
2
- {%- assign all_mentors = '' -%}
3
- {%- assign all_experts = '' -%}
4
- {%- assign all_facilitators = '' -%}
5
- {%- assign all_projects = '' -%}
6
- {%- assign cohorts = site.data.openseeds | sort -%}
7
-
8
- {%- for cohort in cohorts -%}
9
- {%- assign cohort_name = cohort[0] -%}
10
- {%- assign experts = cohort[1].metadata.experts | uniq | size -%}
11
- {%- capture all_experts %}{{ all_experts }}, {{ cohort[1].metadata.experts | join: ', ' }}{% endcapture -%}
12
- {%- assign facilitators = cohort[1].metadata.facilitators | uniq | size -%}
13
- {%- capture all_facilitators %}{{ all_facilitators }}, {{ cohort[1].metadata.facilitators | join: ', ' }}{% endcapture -%}
14
- {%- assign projects = cohort[1].projects -%}
15
- {%- assign mentors = '' -%}
16
- {%- assign participants = '' -%}
17
- {%- assign project_name = '' -%}
18
- {%- for project in projects -%}
19
- {%- for p in project.participants -%}
20
- {%- capture participants %}{{ participants }}, {{ p }}{% endcapture -%}
21
- {%- endfor -%}
22
- {%- for m in project.mentors -%}
23
- {%- capture mentors %}{{ mentors }}, {{ m }}{% endcapture -%}
24
- {%- endfor -%}
25
- {%- for p-name in project.name -%}
26
- {%- capture project_name %}{{ project_name }}, {{ p-name }}{% endcapture -%}
27
- {%- endfor -%}
28
- {%- endfor %}
29
- {%- assign cohort_mentors = mentors | remove_first: ', ' | split: ", " | uniq | sort | size -%}
30
- {%- capture all_mentors %}{{ all_mentors }}, {{ mentors }}{% endcapture -%}
31
- {%- assign cohort_participants = participants | remove_first: ', ' | split: ", " | uniq | sort | size -%}
32
- {%- capture all_participants %}{{ all_participants }}, {{ participants }}{% endcapture -%}
33
- {%- assign cohort_projects = project_name | remove_first: ', ' | split: ", " | uniq | sort | size -%}
34
- {%- capture all_projects %}{{ all_projects }}, {{ project_name }}{% endcapture -%}
35
- {%- assign cohort_schedule = cohort[1].schedule -%}
36
- {%- assign cohort_start = cohort_schedule.weeks['01'].start -%}
37
- {%- assign cohort_end = '' -%}
38
- {%- for week in cohort_schedule.weeks -%}
39
- {%- assign cohort_end = week[1].start -%}
40
- {%- endfor %}
41
- {%- endfor -%}
@@ -1,34 +0,0 @@
1
- {% assign cohort = include.cohort %}
2
- {% assign people = site.data.people %}
3
- {% assign projects = site.data.openseeds[cohort].projects %}
4
- {% assign schedule = site.data.openseeds[cohort].schedule %}
5
- {% assign metadata = site.data.openseeds[cohort].metadata %}
6
-
7
- {% assign all-participants = '' %}
8
- {% assign all-mentors = '' %}
9
- {% for project in projects %}
10
- {% assign p-pparticipants = '' %}
11
- {% for p in project.participants %}
12
- {% capture all-participants %}{{ all-participants}}, {{ p }}{% endcapture %}
13
- {% endfor %}
14
- {% for m in project.mentors %}
15
- {% capture all-mentors %}{{ all-mentors }}, {{ m }}{% endcapture %}
16
- {% endfor %}
17
- {% endfor %}
18
-
19
- {% assign p-participants = all-participants | remove_first: ', ' | split: ", " | uniq | sort %}
20
- {% assign p-mentors = all-mentors | remove_first: ', ' | split: ", " | uniq | sort %}
21
-
22
- {% assign all-speakers = '' %}
23
- {% for w in schedule.weeks %}
24
- {% for c in w[1].calls %}
25
- {% if c.type == 'Cohort' %}
26
- {% for r in c.talks %}
27
- {% if r.speaker %}
28
- {% capture all-speakers %}{{ all-speakers}}, {{ r.speaker }}{% endcapture %}
29
- {% endif %}
30
- {% endfor %}
31
- {% endif %}
32
- {% endfor %}
33
- {% endfor %}
34
- {% assign p-speakers = all-speakers | remove_first: ', ' | split: ", " | uniq | sort %}
@@ -1,11 +0,0 @@
1
- {% for w in schedule['weeks'] %}
2
-
3
- # Week {{ w[0] }}
4
-
5
- <i class="fas fa-calendar-alt"></i> Week starting on **{{ w[1].start }}**
6
-
7
- {% assign week-nb=w[0] %}
8
- {% assign week = w[1] %}
9
- {% include _includes/week.md %}
10
-
11
- {% endfor %}
@@ -1,43 +0,0 @@
1
- <div class="card entity-card" id="{{ entity.name }}">
2
- <div class="card-image">
3
- <figure class="image is-3by1">
4
- {% if entity.logo %}
5
- <img class="entity-logo" src="{{ entity.logo }}" alt="Logo of {{ entity.name }}"/>
6
- {% endif %}
7
- </figure>
8
- </div>
9
- <div class="card-content">
10
- <div class="media">
11
- <div class="media-content entity-card-meta">
12
- <p class="title is-4">{{ entity.name }}</p>
13
- <p class="is-6">
14
- {% if entity.website %}
15
- <a href="{{ entity.website }}"><i class="fas fa-globe"></i></a>
16
- {% endif %}
17
- {% if entity.country %}
18
- <i class="fas fa-map-marker-alt"></i> {{ entity.country }}
19
- {% endif %}
20
- </p>
21
- </div>
22
- </div>
23
- <div class="entity-description">
24
- <p class="entity-description-question">
25
- <a class="card-toggle">
26
- {% if details %}
27
- {{ entity.name }} in OLS
28
- {% else %}
29
- More about {{ entity.name }}
30
- {% endif %}
31
- <i class="fa fa-angle-down"></i>
32
- </a>
33
- </p>
34
- <div class="content is-hidden">
35
- {% if details %}
36
- {{ details | markdownify }}
37
- {% else %}
38
- {{ entity.description | markdownify }}
39
- {% endif %}
40
- </div>
41
- </div>
42
- </div>
43
- </div>
@@ -1,27 +0,0 @@
1
- During the program,
2
-
3
- - Mentors and mentees meet every 2 weeks [for a 30 minutes call]({% link openseeds/{{ cohort }}/index.md %}#mentor-mentee-calls)
4
- - Mentees participate every ~2 weeks to [90-minutes cohort calls]({% link openseeds/{{ cohort }}/index.md %}#cohort-calls) during which the program leaders introduce new topics and resources, facilitate break-out discussions, and invite expert from the field to give talks
5
- - Mentees can participate to skill-up, Q&A or coworking session in the weeks without cohort calls
6
- - Mentors take part to [mentoring workshop and calls]({% link openseeds/{{ cohort }}/index.md %}#mentor-calls)
7
-
8
- ![OLS schedule overview. In the middle, the timeline represents the 16 weeks. On the top, boxes in green represent the 8 different cohort calls pointing to the corresponding weeks (even week numbers). Below the week timeline, blue boxes represent the mentor-mentee meetings pointing to the uneven number weeks. Below the blue boxes, are red boxes corresponding to 3 skill-up calls: "GitHub tutorial for beginners" (week 5), "Open Leadership: Academia, industry, and beyond" (week 9), "Self-care & social call" (week 1s)](/images/schedule.png){: .schedule-overview}
9
-
10
- Organizers will inform participants of the week schedule by email.
11
-
12
- <iframe src="https://calendar.google.com/calendar/embed?height=400&amp;wkst=1&amp;bgcolor=%23ffffff&amp;ctz=UTC&amp;src=b3BlbmxpZmVzY2lAZ21haWwuY29t&amp;color=%23EF6C00&amp;mode=AGENDA&amp;showNav=0&amp;showTitle=0&amp;showPrint=0&amp;showTabs=1&amp;showCalendars=0" style="border-width:0" width="1152" height="600" frameborder="0" scrolling="no"></iframe>
13
-
14
- [<i class="fas fa-calendar-plus"></i> *Subscribe to the OLS calendar*](https://calendar.google.com/calendar?cid=b3BlbmxpZmVzY2lAZ21haWwuY29t)
15
-
16
- <!-- Any modification of the content should be done in the _data/ols-X-schedule.yaml file -->
17
-
18
- | Week | Call | Date | Topic | Agenda |
19
- |------|------|------|-------|--------|
20
- {%- for w in schedule.weeks %}
21
- {%- capture w-desc %}**Week {{ w[0] }}** (start. {{ w[1].start }}){% endcapture %}
22
- {%- for c in w[1].calls %}
23
- {%- capture date %}{% if c.type != "Mentor-Mentee" %}{{ c.date }} {% if c.time %}([{{ c.time | date: "%H:%M" }} Universal Time](https://arewemeetingyet.com/UTC/{{ c.date | date: "%Y-%m-%d" }}/{{ c.time | date: "%H:%M" }}/{{ cohort }}%20{{ c.type }}%20Call%20(Week%20{{ w[0] }}))){% endif %}{% endif %}{% endcapture %}
24
- | {{ w-desc }} | [{{ c.type }}]({% link openseeds/{{ cohort }}/index.md %}#{{ c.type | downcase | remove: "(" | remove: ")" | remove: "@" | remove: ":" | remove: "," | replace: " ", "-" | remove: "&" }}-calls) | {{ date }} | [**{{ c.title }}**]({% link openseeds/{{ cohort }}/schedule.md %}#week-{{ w[0] }}) | {% if c.agenda %}{{ c.agenda }}{% endif %} |
25
- {%- assign w-desc = "" %}
26
- {%- endfor %}
27
- {%- endfor %}
@@ -1,87 +0,0 @@
1
- <div class="card people-card" id="{{ username }}">
2
- <div class="card-content">
3
- <div class="media">
4
- <div class="media-left people-card-avatar">
5
- <figure class="image is-64x64">
6
- <img
7
- class="is-rounded"
8
- src="https://avatars.githubusercontent.com/{{ username }}"
9
- alt="The GitHub avatar of {{ user.name }}"
10
- />
11
- </figure>
12
- </div>
13
- <div class="media-content people-card-meta">
14
- <p class="title is-4">{{ user.first-name }} {{ user.last-name }}</p>
15
-
16
- <p class="is-6">
17
- {% if user.pronouns %}
18
- Pronouns: {{ user.pronouns }}<br>
19
- {% endif %}
20
-
21
- {% if user.twitter %}
22
- <a class="people-card-meta-twitter" href="https://twitter.com/{{ user.twitter }}"><i class="fab fa-twitter"></i> @{{ user.twitter }}</a><br>
23
- {% endif %}
24
- {% if user.website %}
25
- <a href="{{ user.website }}"><i class="fas fa-globe"></i></a>
26
- {% endif %}
27
- {% if user.github != false %}
28
- <a href="https://github.com/{{ username }}"><i class="fab fa-github"></i></a>
29
- {% endif %}
30
- {% if user.gitter %}
31
- <a href="https://gitter.im/{{ user.gitter }}"><i class="fas fa-comments"></i></a>
32
- {% endif %}
33
- {% if user.orcid %}
34
- <a href="https://orcid.org/{{ user.orcid }}"><i class="ai ai-orcid"></i></a>
35
- {% endif %}
36
-
37
- {% if user.affiliation or user.location.country %}
38
- <br>
39
- <i class="fas fa-map-marker-alt"></i>
40
- {% assign delim = '' %}
41
- {% if user.affiliation %}
42
- {{ user.affiliation }}
43
- {% assign delim = ', ' %}
44
- {% endif %}
45
- {% if user.location.country %}
46
- {{ delim }}{{ user.location.country }}
47
- {% endif %}
48
- {% endif %}
49
- </p>
50
- </div>
51
- </div>
52
-
53
- {% if user.title or ols-roles and ols-roles != '' %}
54
- <p class="people-description">
55
- Role in OLS:
56
- {% if user.title %}
57
- {{ user.title }}
58
- <br>
59
- {% endif %}
60
- {% if ols-roles and ols-roles != '' %}
61
- {{ ols-roles }}
62
- {% endif %}
63
- </p>
64
- {% endif %}
65
-
66
- {% if user.expertise %}
67
- <p class="people">
68
- <div class="people-description-question">Expertise:</div> {{ user.expertise | join: ", " }}
69
- </p>
70
- {% endif %}
71
-
72
- <div class="people-description" id="people-bio">
73
- {% if user.bio %}
74
- <p class="people-description-question">
75
- <a class="card-toggle">
76
- More about {{ user.first-name }}
77
- <i class="fa fa-angle-down"></i>
78
- </a>
79
- </p>
80
- <div class="content is-hidden">
81
- {{ user.bio | markdownify }}
82
- </div>
83
- {% endif %}
84
- </div>
85
-
86
- </div>
87
- </div>
@@ -1,61 +0,0 @@
1
- {% assign cohort = include.cohort %}
2
- {% assign people = site.data.people %}
3
- {% assign projects = site.data.openseeds[cohort].projects %}
4
-
5
- {% assign all-participants = '' %}
6
- {% for project in projects %}
7
- {% assign p-pparticipants = '' %}
8
- {% for p in project.participants %}
9
- {% capture all-participants %}{{ all-participants}}, {{ p }}{% endcapture %}
10
- {% endfor %}
11
- {% endfor %}
12
-
13
- {% assign p-participants = all-participants | remove_first: ', ' | split: ", " | uniq | sort %}
14
-
15
- Participants join this program with a project that they either are already working on or want to develop during this program.
16
-
17
- For this round of the OLS program, we are happy to have [{{ p-participants | size }} participants](#participants) with [{{ projects | size }} projects](#projects).
18
-
19
- # Projects
20
-
21
- {% for project in projects %}
22
- {% if project.visible != false %}
23
- {% assign p-pparticipants = '' %}
24
- {% for p in project.participants %}
25
- {% capture p-pparticipants %}{{ p-pparticipants }}, ![](https://avatars.githubusercontent.com/{{ p }}){: .people-badge} [{{ people[p].first-name }} {{ people[p].last-name }}](#{{ p }}){% endcapture %}
26
- {% endfor %}
27
- {% assign mentor = project.mentor %}
28
- {% capture p-mentors %}
29
- {% for p in project.mentors %}with ![](https://avatars.githubusercontent.com/{{ p }}){: .people-badge} [{{ people[p].first-name }} {{ people[p].last-name }}]({% link people.md %}#{{ p }})
30
- {% endfor %}
31
- {% endcapture %}
32
-
33
- ## {{ project.name }}
34
-
35
- **By**: {{ p-pparticipants | remove_first: ', ' }}
36
-
37
- **Mentored by**: {{ p-mentors | remove_first: 'with ' }}
38
-
39
- {% if project.status %}
40
- **Status**: {{ project.status }}
41
- {% endif %}
42
-
43
- {% capture difference %} {{ project.keywords | size | minus:1 }} {% endcapture %}
44
- {% unless difference contains '-' %}
45
- **Keywords**: {{ project.keywords | join: ', ' }}
46
- {% endunless %}
47
-
48
- {{ project.description }}
49
-
50
- {% endif %}
51
- {% endfor %}
52
-
53
- # Participants
54
-
55
- <div class="people">
56
- {% for entry in p-participants %}
57
- {% assign username = entry %}
58
- {% assign user = people[username] %}
59
- {% include _includes/people.html username=username user=user %}
60
- {% endfor %}
61
- </div>
@@ -1,123 +0,0 @@
1
- <script type="application/ld+json" >
2
- {%- assign sep="" -%}
3
- [
4
- {%- for w in schedule.weeks -%}
5
- {%- for c in w[1].calls -%}
6
- {%- if c.type == "Cohort" -%} {% capture name %}{{ c.type }} call for the week {{ w[0] }} of {{ cohort }} cohort of {{ site.title }}: {{ c.title }}{% endcapture %}
7
- {{ sep }}{
8
- "@context": "https://schema.org",
9
- "@type": "Course",
10
- "@id": "{{ site.url }}/{{ cohort }}/schedule#week-{{ w[0] }}",
11
- "dct:conformsTo": {
12
- "https://purl.org/dc/terms/conformsTo": {
13
- "@id": "https://bioschemas.org/profiles/Course/1.0-RELEASE",
14
- "@type": "CreativeWork"
15
- }
16
- },
17
- "description": "{{ site.title }} is a mentoring mentoring & training program for Open Science ambassadors. It runs cohorts with calls every 1-2 weeks. This course is a {{ name }}",
18
- "keywords": "Open Science",
19
- "name": "{{ name }}",
20
- "about": {
21
- "@type": "DefinedTerm",
22
- "@id": "https://edamontology.org/topic_4010",
23
- "inDefinedTermSet": "https://edamontology.org",
24
- "termCode": "topic_4010",
25
- "name": "Open Science",
26
- "url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Ftopic_4010"
27
- },
28
- "educationalLevel": "Beginner",
29
- "inLanguage": "en-US",
30
- "hasCourseInstance": {
31
- "@context": "https://schema.org",
32
- "@type": "CourseInstance",
33
- "dct:conformsTo": {
34
- "https://purl.org/dc/terms/conformsTo": {
35
- "@id": "https://bioschemas.org/profiles/CourseInstance/1.0-RELEASE",
36
- "@type": "CreativeWork"
37
- }
38
- },
39
- "courseMode": ["online", "synchronous"],
40
- "startDate" : "{{ c.date | date: "%Y-%m-%d" }}",
41
- "endDate" :"{{ c.date | date: "%Y-%m-%d" }}",
42
- "inLanguage": "en-US",
43
- "duration": "{{ c.duration }}",
44
- "name" : "{{ c.title }}"
45
- },
46
- "hasPart": [
47
- {
48
- "@context": "https://schema.org",
49
- "@type": "LearningResource",
50
- "dct:conformsTo": {
51
- "https://purl.org/dc/terms/conformsTo": {
52
- "@id": "https://bioschemas.org/profiles/TrainingMaterial/1.0-RELEASE",
53
- "@type": "CreativeWork"
54
- }
55
- },
56
- "description": "Notes and recording for {{ name }}",
57
- "keywords": "Open Science",
58
- "name": "Notes and recording for {{ name }}",
59
- "about": {
60
- "@type": "DefinedTerm",
61
- "@id": "https://edamontology.org/topic_4010",
62
- "inDefinedTermSet": "https://edamontology.org",
63
- "termCode": "topic_4010",
64
- "name": "Open Science",
65
- "url": "https://bioportal.bioontology.org/ontologies/EDAM/?p=classes&conceptid=http%3A%2F%2Fedamontology.org%2Ftopic_4010"
66
- },
67
- "educationalLevel": "Beginner",
68
- "hasPart": [
69
- {
70
- "@type": "CreativeWork",
71
- "url": "{{ c.notes }}",
72
- "name": "Notes for {{ name }}"
73
- }{% if c.recording %},
74
- {
75
- "@type": "CreativeWork",
76
- "url": "{{ c.recording }}",
77
- "name": "Recording for {{ name }}"
78
- }{% endif %}
79
- ],
80
- "inLanguage": "en-US",
81
- "learningResourceType": ["handout", "video"],
82
- "license": "https://creativecommons.org/licenses/by-sa/4.0/",
83
- "contributor": [
84
- {
85
- "@type": "Organization",
86
- "name": "Open Life Science",
87
- "email": "{{ site.email }}",
88
- "url": "{{ site.url }}"
89
- }
90
- {%- for r in c.resources -%}{% if r.type == 'slides' and r.speaker %}
91
- ,{
92
- "@type": "Person",
93
- "name": "{{ site.data.people[r.speaker].first-name }} {{ site.data.people[r.speaker].last-name }}",
94
- "url": "{{ site.url }}/people#{{ r.speaker }}"
95
- }
96
- {% endif %}{%- endfor -%}
97
- {%- if c.hosts -%}{% for r in c.hosts %}
98
- ,{
99
- "@type": "Person",
100
- "name": "{{ site.data.people[r].first-name }} {{ site.data.people[r].last-name }}",
101
- "url": "{{ site.url }}/people#{{ r }}"
102
- }
103
- {% endfor %}{%- endif -%}
104
- ]
105
- }
106
- ],
107
- "license": "https://creativecommons.org/licenses/by-sa/4.0/",
108
- "provider": [{
109
- "@type": "Organization",
110
- "name": "Open Life Science",
111
- "email": "{{ site.email }}",
112
- "url": "{{ site.url }}"
113
- }]
114
- }
115
- {%- assign sep="," -%}
116
- {%- endif -%}
117
- {%- endfor -%}
118
- {%- endfor -%}
119
- ]
120
- </script>
121
-
122
- {% include _includes/overall-schedule.md %}
123
- {% include _includes/detailed-schedule.md %}
@@ -1,24 +0,0 @@
1
- {% for e in schedule.timeline %}
2
- {% assign type = '' %}
3
- {% if e.type %}
4
- {% for t in e.type %}
5
- {% capture type %}{{ type }} + {% if t == 'Talk' %}<i class="fas fa-chalkboard-teacher"></i> Talk{% elsif t == 'Q&A' %}<i class="fas fa-question"></i> Q&A{% elsif t == 'Recording' %}<i class="fab fa-youtube"></i> Recording{% endif %}{% endcapture %}
6
- {% endfor %}
7
- {% assign type = type | remove_first: ' + ' %}
8
- {% endif %}
9
- {% if e.date %}
10
- - **{{ e.date }}** {% if e.time %}([{{ e.time }} Universal Time](https://arewemeetingyet.com/UTC/{{ e.date | date: "%Y-%m-%d" }}/{{ e.time }}/OLS%20Application%20Call)){% endif %}: {{ e.description }}{% if e.type %}({{ type }}){% endif %}{% if e.notes %} - <i class="fas fa-clipboard"></i> [Notes with Zoom call link]({{ e.notes }}){% endif %}{% if e.recording %} - <i class="fab fa-youtube"></i> [Recording]({{ e.recording }}){% endif %}{% if e.details %}
11
-
12
- {{ e.details }}
13
-
14
- {% endif %}
15
- {% endif %}
16
- {% endfor %}
17
- - **{{ schedule.weeks['01'].start }}**: Start of the program
18
-
19
- {% assign end = '' %}
20
- {% for w in schedule.weeks %}
21
- {% assign end = w[1].start %}
22
- {% endfor %}
23
- - **{{ end }}**: End of the program
24
-
data/_includes/toc.html DELETED
@@ -1,12 +0,0 @@
1
- <div class="toc">
2
- <h1 class="no_toc">
3
- <a class="card-toggle">
4
- Table of content
5
- <i class="fa fa-angle-down"></i>
6
- </a>
7
- </h1>
8
- <div class="content is-hidden">
9
- 1. TOC
10
- {:toc}
11
- </div>
12
- </div>
data/_includes/week.md DELETED
@@ -1,55 +0,0 @@
1
- {% for c in week.calls %}
2
-
3
- ## {{ c.type }} call: {{ c.title }}
4
-
5
- {% if c.type != "Mentor-Mentee" and c.date %}
6
- <i class="fas fa-calendar-alt"></i> **Date**: {{ c.date }}{% if c.time %}, at [{{ c.time }} Universal Time](https://arewemeetingyet.com/UTC/{{ c.date | date: "%Y-%m-%d" }}/{{ c.time }}/
7
- {{ cohort | upcase }}%20Cohort%20Call%20(Week%20{{ week-nb }})) {% if c.calendar-event %}([<i class="fas fa-calendar-plus"></i> *Add to your calendar*]({{ c.calendar-event }})){% endif %}{% endif %}
8
- {% else %}
9
- <i class="fas fa-calendar-alt"></i> **Date**: During the week starting on {{ week.start }} (to define with mentors)
10
- {% endif %}
11
-
12
- <i class="fas fa-clock"></i> **Duration**: {{ c.duration }}
13
-
14
- {% if c.hosts %}
15
- {% assign hosts = '' %}
16
- {% for p in c.hosts %}{% capture hosts %}{{ hosts }}, {{ site.data.people[p].first-name }} {{ site.data.people[p].last-name }}{% endcapture %}{% endfor %}
17
- <i class="fas fa-user-friends"></i> **Hosts**: {{ hosts | remove_first: ', ' }}
18
- {% endif %}
19
-
20
- {% if c.content %}
21
- ### In this call
22
-
23
- {{ c.content | markdownify }}
24
-
25
- {% endif %}
26
-
27
- {% if c.type == "Cohort" %}
28
-
29
- **Talks**
30
- {% for r in c.talks %}
31
- - <i class="fas fa-file-powerpoint"></i>{% if r.link %} [{{ r.title }}]({{ r.link }}){% else %} {{ r.title }}{% endif %}{% if r.speaker %}{% if site.data.people[r.speaker].first-name %}, by [{{ site.data.people[r.speaker].first-name }} {{ site.data.people[r.speaker].last-name }}](/{{ cohort }}#{{ r.speaker }}){% endif %}{% endif %}
32
- {% endfor %}
33
-
34
- **Resources**:
35
- - <i class="fas fa-clipboard"></i> [Notes]({{ c.notes }})
36
- - <i class="fab fa-youtube"></i> {% if c.recording %} [Recording]({{ c.recording }}) {% else %} Recording available on the [OLS YouTube channel]({{ site.youtube }}) after the call {% endif %}
37
- {% for r in c.resources %}
38
- - {% if r.type == 'slides' %}<i class="fas fa-file-powerpoint"></i>{% elsif r.type == 'document' %} <i class="fas fa-file"></i>{% elsif r.type == 'external-link' %} <i class="fas fa-external-link-square-alt"></i>{% endif %} {% if r.link %} [{{ r.title }}]({{ r.link }}){% else %} {{ r.title }}{% endif %}
39
- {% endfor %}
40
-
41
- {% endif %}
42
-
43
- {% if c.before %}
44
- ### Before the call
45
-
46
- {{ c.before | markdownify }}
47
- {% endif %}
48
-
49
- {% if c.after %}
50
- ### After the call
51
-
52
- {{ c.after | markdownify }}
53
- {% endif %}
54
-
55
- {% endfor %}