ols-theme 0.9.0 → 1.0.0

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: f3ad191687ed79576d794e2a6953acadbf844f43a29819c6a12c5d1a10e8576c
4
+ data.tar.gz: 86ce6edd2dc9281d087258846f03c855c42176ceef61c6f4d85a202a980ada71
5
5
  SHA512:
6
- metadata.gz: 0162c495fcddd47ecfdc46c80fcbaf07eb12c9b76764e14a4443313f43a99501fe91b90c936a3abd5603ca9cdac5aed16fbc9dca0f039896c4b7746ff400703e
7
- data.tar.gz: 0d51d56e59ad5237a91a2e99b71c01ef0210fb786ea457e9b1ff3ae866a147dbf2a4b62b6b72d27c0f5d130cac23fa1d91ed96369f04ebe168e63b4b660ef0b1
6
+ metadata.gz: feaedfb429b3dc7168f18872f2891d57c452a6c2b856007a02912a26de79765461b45a2382f970f23c28341f37950bcc3a2e8312b40e59e89033153b28374cb7
7
+ data.tar.gz: ad4adb868cddc7e4beae6a66644718ff38c0cbd5fa16f5c055ba14c7ec2beb05bf3d2db85813f5ab17f24038261106eefde911ea6fd2b1f0c58893e84f62372e
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.0
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-16 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
@@ -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 %}