jekyll-theme-conference 3.6.4 → 3.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +12 -0
- data/_includes/js/program.js +9 -10
- data/_includes/partials/get_talk_time.html +2 -2
- data/_includes/partials/get_talk_timestamp.html +8 -2
- data/_layouts/default.html +5 -5
- data/_layouts/home.html +1 -1
- data/_layouts/location.html +25 -25
- data/_layouts/page.html +13 -13
- data/_layouts/program.html +2 -2
- data/_layouts/room.html +70 -70
- data/_layouts/speaker-overview.html +47 -47
- data/_layouts/speaker.html +111 -111
- data/_layouts/stream-overview.html +43 -43
- data/_layouts/talk-overview.html +112 -112
- data/_layouts/talk.html +123 -123
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c1ae1f2dbcda31e4ce12d4b75f54f6a312c3655cff07c687f81e51224b7d441
|
4
|
+
data.tar.gz: 596deb64096b9bb97d119e72df6266a41ee850fa02331594bd4a1a8632560715
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4e63ef6d5549b73bb3bf19122622e49eab48fcbd748614080ec9f48151c2c2c87ba4270f1db22017e713bca937698c2f947a98bcab5d918a577bab6a6bd5e68
|
7
|
+
data.tar.gz: 738b6b41d1da24784cebc85ffee5e07d2aa8ac2f59df332189b5ccf550e7d10bd74cd67c41df8b4763eda8dda9a4a32ea75086a2f2091134e734795672aea88f
|
data/README.md
CHANGED
@@ -31,6 +31,7 @@ The theme was originally created for the yearly Winterkongress conference of the
|
|
31
31
|
* [Theme Verification](#theme-verification)
|
32
32
|
* [Collection URLs](#collection-urls)
|
33
33
|
* [Language](#language)
|
34
|
+
* [Timezone](#timezone)
|
34
35
|
* [Navigation Bar](#navigation-bar)
|
35
36
|
* [Open Graph Link Preview](#open-graph-link-preview)
|
36
37
|
* [Main Landing Page](#main-landing-page)
|
@@ -251,6 +252,17 @@ conference:
|
|
251
252
|
lang: en
|
252
253
|
```
|
253
254
|
|
255
|
+
### Timezone
|
256
|
+
|
257
|
+
Multiple dynamic features such as showing the current day in the program or live indications require correct timing. Define the timezone in which the conference takes place with the `tz` property set to a valid [UTC timezone offset](https://en.wikipedia.org/wiki/List_of_UTC_offsets) in the format `"+/-HH:MM"`:
|
258
|
+
|
259
|
+
Example:
|
260
|
+
|
261
|
+
```yaml
|
262
|
+
conference:
|
263
|
+
tz: "+02:00"
|
264
|
+
```
|
265
|
+
|
254
266
|
### Navigation Bar
|
255
267
|
|
256
268
|
The navigation bar is located at the top and visible on every site. On the right it show the title of the website (`site.title`) followed by the links listed under the `links` property of the `navigation` property. See the _Content_ > _Links_ section below for the available properties per link.
|
data/_includes/js/program.js
CHANGED
@@ -6,37 +6,36 @@ window.conference.program = (() => {
|
|
6
6
|
};
|
7
7
|
|
8
8
|
const init = () => {
|
9
|
-
if ($(
|
9
|
+
if ($("#day-list")) {
|
10
10
|
// Switch to day if page load with hash
|
11
11
|
const hash = window.location.hash;
|
12
12
|
if (hash) {
|
13
|
-
$('#day-list a[href="' + hash + '"]').tab(
|
13
|
+
$('#day-list a[href="' + hash + '"]').tab("show");
|
14
14
|
}
|
15
15
|
|
16
16
|
// Switch to day if today
|
17
17
|
else {
|
18
|
-
|
19
|
-
|
18
|
+
const now = new Date();
|
19
|
+
const tsNow = Math.floor(now.getTime() / 1000);
|
20
20
|
|
21
21
|
$('a[data-toggle="tab"]').each(function () {
|
22
|
-
|
23
|
-
d.setHours(0,0,0,0);
|
22
|
+
const tsMidnight = new Date($(this).data("ts") * 1000);
|
24
23
|
|
25
|
-
if (
|
26
|
-
$(this).tab(
|
24
|
+
if (tsMidnight <= tsNow < tsMidnight + 24 * 60 * 60) {
|
25
|
+
$(this).tab("show");
|
27
26
|
updateHash(this.hash);
|
28
27
|
}
|
29
28
|
});
|
30
29
|
}
|
31
30
|
|
32
31
|
// Add current selected day as hash to URL while keeping current scrolling position
|
33
|
-
$('a[data-toggle="tab"]').on(
|
32
|
+
$('a[data-toggle="tab"]').on("shown.bs.tab", function () {
|
34
33
|
updateHash(this.hash);
|
35
34
|
});
|
36
35
|
}
|
37
36
|
};
|
38
37
|
|
39
38
|
return {
|
40
|
-
init: init
|
39
|
+
init: init,
|
41
40
|
};
|
42
41
|
})();
|
@@ -1,5 +1,5 @@
|
|
1
|
-
{%- assign talk_start = t.time_start -%}
|
2
|
-
{%- assign talk_end = t.time_end -%}
|
1
|
+
{%- assign talk_start = t.time_start | default: "00:00" -%}
|
2
|
+
{%- assign talk_end = t.time_end | default: "00:00" -%}
|
3
3
|
|
4
4
|
{%- if talk_start contains ' +' -%}
|
5
5
|
{%- assign talk_start_day = talk_start | split: ' +' | last | plus: 0 -%}
|
@@ -1,9 +1,15 @@
|
|
1
1
|
{%- include partials/get_talk_time.html -%}
|
2
2
|
|
3
|
-
{%- assign datetime_start = d.date | append: "
|
3
|
+
{%- assign datetime_start = d.date | append: "T" | append: talk_start | append: ":00" -%}
|
4
|
+
{%- if site.conference.tz -%}
|
5
|
+
{%- assign datetime_start = datetime_start | append: site.conference.tz -%}
|
6
|
+
{%- endif -%}
|
4
7
|
{%- assign add_days_start = talk_start_day | times: 24 | times: 60 | times: 60 -%}
|
5
8
|
{%- assign timestamp_start = datetime_start | date: "%s" | plus: add_days_start | date: "%s" -%}
|
6
9
|
|
7
|
-
{%- assign datetime_end = d.date | append: "
|
10
|
+
{%- assign datetime_end = d.date | append: "T" | append: talk_end | append: ":00" -%}
|
11
|
+
{%- if site.conference.tz -%}
|
12
|
+
{%- assign datetime_end = datetime_end | append: site.conference.tz -%}
|
13
|
+
{%- endif -%}
|
8
14
|
{%- assign add_days_end = talk_end_day | times: 24 | times: 60 | times: 60 -%}
|
9
15
|
{%- assign timestamp_end = datetime_end | date: "%s" | plus: add_days_end | date: "%s" -%}
|
data/_layouts/default.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
{% include partials/header.html %}
|
2
|
-
|
3
|
-
{{ content }}
|
4
|
-
|
5
|
-
{% include partials/footer.html %}
|
1
|
+
{% include partials/header.html %}
|
2
|
+
|
3
|
+
{{ content }}
|
4
|
+
|
5
|
+
{% include partials/footer.html %}
|
data/_layouts/home.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{% include partials/header.html %}
|
2
2
|
|
3
3
|
<div class="jumbotron">
|
4
|
-
<h1 class="display-3">
|
4
|
+
<h1 class="display-3 text-break">
|
5
5
|
{% if site.conference.main.logo.img %}
|
6
6
|
<img src="{{ site.conference.main.logo.img | prepend: '/assets/images/' | prepend: site.baseurl }}" class="w-75 d-none d-md-inline" alt="{{ site.title }}" />
|
7
7
|
<img src="{{ site.conference.main.logo.img | prepend: '/assets/images/' | prepend: site.baseurl }}" class="w-100 d-md-none" alt="{{ site.title }}" />
|
data/_layouts/location.html
CHANGED
@@ -1,25 +1,25 @@
|
|
1
|
-
{% include partials/header.html %}
|
2
|
-
|
3
|
-
{% assign this_room = page %}
|
4
|
-
|
5
|
-
<h1 class="display-5 mb-3">
|
6
|
-
{% if page.title %}
|
7
|
-
{{ page.title }}
|
8
|
-
{% else %}
|
9
|
-
{{ site.data.lang[site.conference.lang].location.directions | default: "Directions" }}
|
10
|
-
{% endif %}
|
11
|
-
</h1>
|
12
|
-
|
13
|
-
{% assign this_room = page %}
|
14
|
-
|
15
|
-
{% unless site.conference.location.hide %}
|
16
|
-
{% include partials/navbar_rooms.html %}
|
17
|
-
{% endunless %}
|
18
|
-
|
19
|
-
{{ content }}
|
20
|
-
|
21
|
-
{% if site.conference.location.map %}
|
22
|
-
<div id="map" class="mt-4 mb-3"></div>
|
23
|
-
{% endif %}
|
24
|
-
|
25
|
-
{% include partials/footer.html %}
|
1
|
+
{% include partials/header.html %}
|
2
|
+
|
3
|
+
{% assign this_room = page %}
|
4
|
+
|
5
|
+
<h1 class="display-5 mb-3 text-break">
|
6
|
+
{% if page.title %}
|
7
|
+
{{ page.title }}
|
8
|
+
{% else %}
|
9
|
+
{{ site.data.lang[site.conference.lang].location.directions | default: "Directions" }}
|
10
|
+
{% endif %}
|
11
|
+
</h1>
|
12
|
+
|
13
|
+
{% assign this_room = page %}
|
14
|
+
|
15
|
+
{% unless site.conference.location.hide %}
|
16
|
+
{% include partials/navbar_rooms.html %}
|
17
|
+
{% endunless %}
|
18
|
+
|
19
|
+
{{ content }}
|
20
|
+
|
21
|
+
{% if site.conference.location.map %}
|
22
|
+
<div id="map" class="mt-4 mb-3"></div>
|
23
|
+
{% endif %}
|
24
|
+
|
25
|
+
{% include partials/footer.html %}
|
data/_layouts/page.html
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
{% include partials/header.html %}
|
2
|
-
|
3
|
-
{% if page.title -%}
|
4
|
-
<h1 class="display-5 mb-3">{{ page.title }}</h1>
|
5
|
-
{%- endif %}
|
6
|
-
|
7
|
-
{{ content }}
|
8
|
-
|
9
|
-
{% if page.map %}
|
10
|
-
<div id="map" class="mt-4 mb-3"></div>
|
11
|
-
{% endif %}
|
12
|
-
|
13
|
-
{% include partials/footer.html %}
|
1
|
+
{% include partials/header.html %}
|
2
|
+
|
3
|
+
{% if page.title -%}
|
4
|
+
<h1 class="display-5 mb-3 text-break">{{ page.title }}</h1>
|
5
|
+
{%- endif %}
|
6
|
+
|
7
|
+
{{ content }}
|
8
|
+
|
9
|
+
{% if page.map %}
|
10
|
+
<div id="map" class="mt-4 mb-3"></div>
|
11
|
+
{% endif %}
|
12
|
+
|
13
|
+
{% include partials/footer.html %}
|
data/_layouts/program.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{% include partials/header.html %}
|
2
2
|
{% assign nbr_days = site.data.program.days | size -%}
|
3
3
|
|
4
|
-
<h1 class="display-5 {% if nbr_days > 1 -%} mb-2 {%- else -%} mb-4 {%- endif %}">
|
4
|
+
<h1 class="display-5 {% if nbr_days > 1 -%} mb-2 {%- else -%} mb-4 {%- endif %} text-break">
|
5
5
|
{%- if page.title -%}
|
6
6
|
{{- page.title -}}
|
7
7
|
{%- else -%}
|
@@ -16,7 +16,7 @@
|
|
16
16
|
{%- for d in site.data.program.days -%}
|
17
17
|
{%- include partials/get_day_hash.html %}
|
18
18
|
<li class="nav-item" role="presentation">
|
19
|
-
<a class="nav-link btn btn-outline-secondary {%- if forloop.index == 1 %} active{% endif %}" id="tab-{{ day_hash }}" data-toggle="tab" {%- if d.date %} data-
|
19
|
+
<a class="nav-link btn btn-outline-secondary {%- if forloop.index == 1 %} active{% endif %}" id="tab-{{ day_hash }}" data-toggle="tab" {%- if d.date -%}{%- include partials/get_talk_timestamp.html %} data-ts="{{ timestamp_start }}" {%- endif %} href="#{{ day_hash }}" role="tab" aria-controls="{{ day_hash }}" aria-selected="{% if forloop.index == 1 %}true{% else %}false{% endif %}">{{ day_name }}</a>
|
20
20
|
</li>
|
21
21
|
{%- endfor %}
|
22
22
|
</ul>
|
data/_layouts/room.html
CHANGED
@@ -1,70 +1,70 @@
|
|
1
|
-
{%- assign this_room = page -%}
|
2
|
-
|
3
|
-
{%- unless this_room.hide or site.conference.location.hide -%}
|
4
|
-
{%- include partials/header.html -%}
|
5
|
-
|
6
|
-
<!-- title for print: -->
|
7
|
-
<h1 class="display-5 mb-3 d-none d-print-inline">
|
8
|
-
{{ this_room.name }}
|
9
|
-
</h1>
|
10
|
-
|
11
|
-
<!-- title shown in browser: -->
|
12
|
-
<h1 class="display-5 mb-3 d-print-none">
|
13
|
-
{{ site.data.lang[site.conference.lang].location.rooms | default: "Rooms" }}
|
14
|
-
</h1>
|
15
|
-
|
16
|
-
{% include partials/navbar_rooms.html %}
|
17
|
-
|
18
|
-
{{ content }}
|
19
|
-
|
20
|
-
{% assign room_talks = false %}
|
21
|
-
{% for d in site.data.program.days %}
|
22
|
-
{% include partials/get_day_hash.html %}
|
23
|
-
{% for r in d.rooms %}
|
24
|
-
{% if this_room.name == r.name and r.talks.size > 0 %}
|
25
|
-
{% unless room_talks %}
|
26
|
-
<h5 class="mt-4 mb-2">
|
27
|
-
{{ site.data.lang[site.conference.lang].location.talks | default: "Talks in this room" }}:
|
28
|
-
</h5>
|
29
|
-
{% assign room_talks = true %}
|
30
|
-
{% endunless %}
|
31
|
-
|
32
|
-
<h6 class="mt-1 mb-0">
|
33
|
-
{{- day_name -}}
|
34
|
-
</h6>
|
35
|
-
|
36
|
-
<table class="list-program">
|
37
|
-
{%- for t in r.talks -%}
|
38
|
-
{%- assign talk = site.talks | where: 'name', t.name | first -%}
|
39
|
-
{%- include partials/get_main_category.html %}
|
40
|
-
|
41
|
-
<tr>
|
42
|
-
<td class="pr-2">
|
43
|
-
{%- include partials/get_talk_time.html -%}
|
44
|
-
{%- assign talk_day_hide = true -%}
|
45
|
-
{%- assign talk_time_styleclass = "w-100" -%}
|
46
|
-
{% include partials/show_talk_time.html %}
|
47
|
-
|
48
|
-
{%- assign live_button_styleclass = "w-100" -%}
|
49
|
-
{% include partials/show_live_button.html %}
|
50
|
-
</td>
|
51
|
-
<td class="pl-2 border-soft-{{ main_cat_color }}">
|
52
|
-
<p class="mb-0">
|
53
|
-
{%- include partials/show_talk.html -%}
|
54
|
-
</p>
|
55
|
-
<p class="font-weight-light mb-0">
|
56
|
-
{%- include partials/list_speakers.html -%}
|
57
|
-
</p>
|
58
|
-
</td>
|
59
|
-
</tr>
|
60
|
-
{%- endfor -%}
|
61
|
-
|
62
|
-
</table>
|
63
|
-
{%- break -%}
|
64
|
-
|
65
|
-
{% endif %}
|
66
|
-
{% endfor %}
|
67
|
-
{% endfor %}
|
68
|
-
|
69
|
-
{%- include partials/footer.html -%}
|
70
|
-
{%- endunless -%}
|
1
|
+
{%- assign this_room = page -%}
|
2
|
+
|
3
|
+
{%- unless this_room.hide or site.conference.location.hide -%}
|
4
|
+
{%- include partials/header.html -%}
|
5
|
+
|
6
|
+
<!-- title for print: -->
|
7
|
+
<h1 class="display-5 mb-3 d-none d-print-inline">
|
8
|
+
{{ this_room.name }}
|
9
|
+
</h1>
|
10
|
+
|
11
|
+
<!-- title shown in browser: -->
|
12
|
+
<h1 class="display-5 mb-3 d-print-none text-break">
|
13
|
+
{{ site.data.lang[site.conference.lang].location.rooms | default: "Rooms" }}
|
14
|
+
</h1>
|
15
|
+
|
16
|
+
{% include partials/navbar_rooms.html %}
|
17
|
+
|
18
|
+
{{ content }}
|
19
|
+
|
20
|
+
{% assign room_talks = false %}
|
21
|
+
{% for d in site.data.program.days %}
|
22
|
+
{% include partials/get_day_hash.html %}
|
23
|
+
{% for r in d.rooms %}
|
24
|
+
{% if this_room.name == r.name and r.talks.size > 0 %}
|
25
|
+
{% unless room_talks %}
|
26
|
+
<h5 class="mt-4 mb-2">
|
27
|
+
{{ site.data.lang[site.conference.lang].location.talks | default: "Talks in this room" }}:
|
28
|
+
</h5>
|
29
|
+
{% assign room_talks = true %}
|
30
|
+
{% endunless %}
|
31
|
+
|
32
|
+
<h6 class="mt-1 mb-0">
|
33
|
+
{{- day_name -}}
|
34
|
+
</h6>
|
35
|
+
|
36
|
+
<table class="list-program">
|
37
|
+
{%- for t in r.talks -%}
|
38
|
+
{%- assign talk = site.talks | where: 'name', t.name | first -%}
|
39
|
+
{%- include partials/get_main_category.html %}
|
40
|
+
|
41
|
+
<tr>
|
42
|
+
<td class="pr-2">
|
43
|
+
{%- include partials/get_talk_time.html -%}
|
44
|
+
{%- assign talk_day_hide = true -%}
|
45
|
+
{%- assign talk_time_styleclass = "w-100" -%}
|
46
|
+
{% include partials/show_talk_time.html %}
|
47
|
+
|
48
|
+
{%- assign live_button_styleclass = "w-100" -%}
|
49
|
+
{% include partials/show_live_button.html %}
|
50
|
+
</td>
|
51
|
+
<td class="pl-2 border-soft-{{ main_cat_color }}">
|
52
|
+
<p class="mb-0">
|
53
|
+
{%- include partials/show_talk.html -%}
|
54
|
+
</p>
|
55
|
+
<p class="font-weight-light mb-0">
|
56
|
+
{%- include partials/list_speakers.html -%}
|
57
|
+
</p>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
{%- endfor -%}
|
61
|
+
|
62
|
+
</table>
|
63
|
+
{%- break -%}
|
64
|
+
|
65
|
+
{% endif %}
|
66
|
+
{% endfor %}
|
67
|
+
{% endfor %}
|
68
|
+
|
69
|
+
{%- include partials/footer.html -%}
|
70
|
+
{%- endunless -%}
|
@@ -1,47 +1,47 @@
|
|
1
|
-
{% include partials/header.html %}
|
2
|
-
|
3
|
-
<h1 class="display-5 mb-4">
|
4
|
-
{% if page.title %}
|
5
|
-
{{ page.title }}
|
6
|
-
{% else %}
|
7
|
-
{{ site.data.lang[site.conference.lang].speaker.overview | default: "Speakers" }}
|
8
|
-
{% endif %}
|
9
|
-
</h1>
|
10
|
-
|
11
|
-
{{ content }}
|
12
|
-
|
13
|
-
<div class="speakerlist">
|
14
|
-
{% assign cur_letter = false %}
|
15
|
-
{% assign speakers = site.speakers | sort_natural: 'last_name' %}
|
16
|
-
{% for speaker in speakers %}
|
17
|
-
|
18
|
-
{% assign last_letter = speaker.last_name | slice: 0 | capitalize %}
|
19
|
-
{% if cur_letter != last_letter %}
|
20
|
-
{% if cur_letter %}
|
21
|
-
</ul>
|
22
|
-
</div>
|
23
|
-
{% endif %}
|
24
|
-
|
25
|
-
{% assign cur_letter = last_letter %}
|
26
|
-
<div class="speakergroup">
|
27
|
-
<h3>{{ cur_letter }}</h3>
|
28
|
-
<ul class="list-unstyled">
|
29
|
-
{% endif %}
|
30
|
-
|
31
|
-
<li class="font-weight-light">
|
32
|
-
{% if speaker.hide %}
|
33
|
-
{{ speaker.first_name }} {{ speaker.last_name }}
|
34
|
-
{% else %}
|
35
|
-
<a href="{{ speaker.url | prepend: site.baseurl }}">
|
36
|
-
{{ speaker.first_name }} {{ speaker.last_name }}
|
37
|
-
</a>
|
38
|
-
{% endif %}
|
39
|
-
</li>
|
40
|
-
|
41
|
-
{% endfor %}
|
42
|
-
|
43
|
-
</ul>
|
44
|
-
</div>
|
45
|
-
</div>
|
46
|
-
|
47
|
-
{% include partials/footer.html %}
|
1
|
+
{% include partials/header.html %}
|
2
|
+
|
3
|
+
<h1 class="display-5 mb-4 text-break">
|
4
|
+
{% if page.title %}
|
5
|
+
{{ page.title }}
|
6
|
+
{% else %}
|
7
|
+
{{ site.data.lang[site.conference.lang].speaker.overview | default: "Speakers" }}
|
8
|
+
{% endif %}
|
9
|
+
</h1>
|
10
|
+
|
11
|
+
{{ content }}
|
12
|
+
|
13
|
+
<div class="speakerlist">
|
14
|
+
{% assign cur_letter = false %}
|
15
|
+
{% assign speakers = site.speakers | sort_natural: 'last_name' %}
|
16
|
+
{% for speaker in speakers %}
|
17
|
+
|
18
|
+
{% assign last_letter = speaker.last_name | slice: 0 | capitalize %}
|
19
|
+
{% if cur_letter != last_letter %}
|
20
|
+
{% if cur_letter %}
|
21
|
+
</ul>
|
22
|
+
</div>
|
23
|
+
{% endif %}
|
24
|
+
|
25
|
+
{% assign cur_letter = last_letter %}
|
26
|
+
<div class="speakergroup">
|
27
|
+
<h3>{{ cur_letter }}</h3>
|
28
|
+
<ul class="list-unstyled">
|
29
|
+
{% endif %}
|
30
|
+
|
31
|
+
<li class="font-weight-light">
|
32
|
+
{% if speaker.hide %}
|
33
|
+
{{ speaker.first_name }} {{ speaker.last_name }}
|
34
|
+
{% else %}
|
35
|
+
<a href="{{ speaker.url | prepend: site.baseurl }}">
|
36
|
+
{{ speaker.first_name }} {{ speaker.last_name }}
|
37
|
+
</a>
|
38
|
+
{% endif %}
|
39
|
+
</li>
|
40
|
+
|
41
|
+
{% endfor %}
|
42
|
+
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
{% include partials/footer.html %}
|
data/_layouts/speaker.html
CHANGED
@@ -1,111 +1,111 @@
|
|
1
|
-
{%- assign speaker = page -%}
|
2
|
-
|
3
|
-
{%- unless speaker.hide -%}
|
4
|
-
{%- include partials/header.html -%}
|
5
|
-
|
6
|
-
<p class="h6">
|
7
|
-
{{ site.data.lang[site.conference.lang].speaker.title | default: "Speaker" }}
|
8
|
-
</p>
|
9
|
-
|
10
|
-
<h1 class="font-weight-light mb-3">
|
11
|
-
{{ speaker.first_name }} {{ speaker.last_name }}
|
12
|
-
</h1>
|
13
|
-
|
14
|
-
{{ content }}
|
15
|
-
|
16
|
-
{% include partials/get_link_types.html %}
|
17
|
-
|
18
|
-
{% if has_icon_links %}
|
19
|
-
<ul class="list-unstyled">
|
20
|
-
{% for link in speaker.links %}
|
21
|
-
{% assign link_styleclass = "text-reset" %}
|
22
|
-
{% include partials/get_link.html %}
|
23
|
-
|
24
|
-
{% if link_icon %}
|
25
|
-
<li class="mb-1">
|
26
|
-
{{ link_tag }}
|
27
|
-
<span class="badge badge-light font-weight-normal mr-1">
|
28
|
-
<i class="fas fa-{{ link_icon }} fa-fw"></i>
|
29
|
-
</span>
|
30
|
-
{{- link.name }}
|
31
|
-
</a>
|
32
|
-
</li>
|
33
|
-
{% endif %}
|
34
|
-
{% endfor %}
|
35
|
-
</ul>
|
36
|
-
{% endif %}
|
37
|
-
|
38
|
-
{% if has_regular_links %}
|
39
|
-
<h5 class="mt-4 mb-1">{{ site.data.lang[site.conference.lang].more_information | default: "More Information" }}:</h5>
|
40
|
-
|
41
|
-
<ul class="list-unstyled">
|
42
|
-
{% for link in speaker.links %}
|
43
|
-
{% assign link_styleclass = "text-reset" %}
|
44
|
-
{% include partials/get_link.html %}
|
45
|
-
|
46
|
-
{% unless link_icon %}
|
47
|
-
<li class="mb-1 ml-2 pl-2 border-soft-primary">
|
48
|
-
{{ link_tag }}
|
49
|
-
{{ link.name }}
|
50
|
-
</a>
|
51
|
-
</li>
|
52
|
-
{% endunless %}
|
53
|
-
{% endfor %}
|
54
|
-
</ul>
|
55
|
-
{% endif %}
|
56
|
-
|
57
|
-
{% assign active_speaker = false %}
|
58
|
-
{% for talk in site.talks %}
|
59
|
-
{% for speaker_name in talk.speakers %}
|
60
|
-
{% if speaker_name == speaker.name %}
|
61
|
-
{% assign active_speaker = true %}
|
62
|
-
{% break %}
|
63
|
-
{% endif %}
|
64
|
-
{% endfor %}
|
65
|
-
{% endfor %}
|
66
|
-
|
67
|
-
{% if active_speaker %}
|
68
|
-
<h5 class="mt-4 mb-0">{{ site.data.lang[site.conference.lang].speaker.talks | default: "Talks at this conference" }}:</h5>
|
69
|
-
|
70
|
-
<table class="list-program">
|
71
|
-
{%- for d in site.data.program.days -%}
|
72
|
-
{%- include partials/get_day_hash.html -%}
|
73
|
-
{%- for r in d.rooms -%}
|
74
|
-
{%- for t in r.talks -%}
|
75
|
-
{%- assign talk = site.talks | where: 'name', t.name | first -%}
|
76
|
-
|
77
|
-
{%- for speaker_name in talk.speakers -%}
|
78
|
-
{%- if speaker_name == speaker.name -%}
|
79
|
-
|
80
|
-
{%- include partials/get_main_category.html -%}
|
81
|
-
|
82
|
-
<tr>
|
83
|
-
<td class="pr-2 py-0">
|
84
|
-
{%- include partials/get_talk_time.html -%}
|
85
|
-
{%- assign talk_time_styleclass = "w-100" -%}
|
86
|
-
{%- include partials/show_talk_time.html -%}
|
87
|
-
</td>
|
88
|
-
<td class="pl-2 py-0 align-baseline border-soft-{{ main_cat_color }}">
|
89
|
-
<span class="mr-2">
|
90
|
-
{%- include partials/show_talk.html -%}
|
91
|
-
</span>
|
92
|
-
{%- include partials/show_live_button.html -%}
|
93
|
-
</td>
|
94
|
-
</tr>
|
95
|
-
|
96
|
-
{%- endif -%}
|
97
|
-
{%- endfor -%}
|
98
|
-
{%- endfor -%}
|
99
|
-
{%- endfor -%}
|
100
|
-
{%- endfor -%}
|
101
|
-
</table>
|
102
|
-
{% endif %}
|
103
|
-
|
104
|
-
<p class="d-print-none mt-5">
|
105
|
-
<a href="{{ page.collection | prepend: '/' | prepend: site.baseurl }}" class="btn btn-light">
|
106
|
-
<i class="fas fa-users"></i> {{ site.data.lang[site.conference.lang].overview | default: "Overview" }}
|
107
|
-
</a>
|
108
|
-
</p>
|
109
|
-
|
110
|
-
{%- include partials/footer.html -%}
|
111
|
-
{%- endunless -%}
|
1
|
+
{%- assign speaker = page -%}
|
2
|
+
|
3
|
+
{%- unless speaker.hide -%}
|
4
|
+
{%- include partials/header.html -%}
|
5
|
+
|
6
|
+
<p class="h6">
|
7
|
+
{{ site.data.lang[site.conference.lang].speaker.title | default: "Speaker" }}
|
8
|
+
</p>
|
9
|
+
|
10
|
+
<h1 class="font-weight-light mb-3 text-break">
|
11
|
+
{{ speaker.first_name }} {{ speaker.last_name }}
|
12
|
+
</h1>
|
13
|
+
|
14
|
+
{{ content }}
|
15
|
+
|
16
|
+
{% include partials/get_link_types.html %}
|
17
|
+
|
18
|
+
{% if has_icon_links %}
|
19
|
+
<ul class="list-unstyled">
|
20
|
+
{% for link in speaker.links %}
|
21
|
+
{% assign link_styleclass = "text-reset" %}
|
22
|
+
{% include partials/get_link.html %}
|
23
|
+
|
24
|
+
{% if link_icon %}
|
25
|
+
<li class="mb-1">
|
26
|
+
{{ link_tag }}
|
27
|
+
<span class="badge badge-light font-weight-normal mr-1">
|
28
|
+
<i class="fas fa-{{ link_icon }} fa-fw"></i>
|
29
|
+
</span>
|
30
|
+
{{- link.name }}
|
31
|
+
</a>
|
32
|
+
</li>
|
33
|
+
{% endif %}
|
34
|
+
{% endfor %}
|
35
|
+
</ul>
|
36
|
+
{% endif %}
|
37
|
+
|
38
|
+
{% if has_regular_links %}
|
39
|
+
<h5 class="mt-4 mb-1">{{ site.data.lang[site.conference.lang].more_information | default: "More Information" }}:</h5>
|
40
|
+
|
41
|
+
<ul class="list-unstyled">
|
42
|
+
{% for link in speaker.links %}
|
43
|
+
{% assign link_styleclass = "text-reset" %}
|
44
|
+
{% include partials/get_link.html %}
|
45
|
+
|
46
|
+
{% unless link_icon %}
|
47
|
+
<li class="mb-1 ml-2 pl-2 border-soft-primary">
|
48
|
+
{{ link_tag }}
|
49
|
+
{{ link.name }}
|
50
|
+
</a>
|
51
|
+
</li>
|
52
|
+
{% endunless %}
|
53
|
+
{% endfor %}
|
54
|
+
</ul>
|
55
|
+
{% endif %}
|
56
|
+
|
57
|
+
{% assign active_speaker = false %}
|
58
|
+
{% for talk in site.talks %}
|
59
|
+
{% for speaker_name in talk.speakers %}
|
60
|
+
{% if speaker_name == speaker.name %}
|
61
|
+
{% assign active_speaker = true %}
|
62
|
+
{% break %}
|
63
|
+
{% endif %}
|
64
|
+
{% endfor %}
|
65
|
+
{% endfor %}
|
66
|
+
|
67
|
+
{% if active_speaker %}
|
68
|
+
<h5 class="mt-4 mb-0">{{ site.data.lang[site.conference.lang].speaker.talks | default: "Talks at this conference" }}:</h5>
|
69
|
+
|
70
|
+
<table class="list-program">
|
71
|
+
{%- for d in site.data.program.days -%}
|
72
|
+
{%- include partials/get_day_hash.html -%}
|
73
|
+
{%- for r in d.rooms -%}
|
74
|
+
{%- for t in r.talks -%}
|
75
|
+
{%- assign talk = site.talks | where: 'name', t.name | first -%}
|
76
|
+
|
77
|
+
{%- for speaker_name in talk.speakers -%}
|
78
|
+
{%- if speaker_name == speaker.name -%}
|
79
|
+
|
80
|
+
{%- include partials/get_main_category.html -%}
|
81
|
+
|
82
|
+
<tr>
|
83
|
+
<td class="pr-2 py-0">
|
84
|
+
{%- include partials/get_talk_time.html -%}
|
85
|
+
{%- assign talk_time_styleclass = "w-100" -%}
|
86
|
+
{%- include partials/show_talk_time.html -%}
|
87
|
+
</td>
|
88
|
+
<td class="pl-2 py-0 align-baseline border-soft-{{ main_cat_color }}">
|
89
|
+
<span class="mr-2">
|
90
|
+
{%- include partials/show_talk.html -%}
|
91
|
+
</span>
|
92
|
+
{%- include partials/show_live_button.html -%}
|
93
|
+
</td>
|
94
|
+
</tr>
|
95
|
+
|
96
|
+
{%- endif -%}
|
97
|
+
{%- endfor -%}
|
98
|
+
{%- endfor -%}
|
99
|
+
{%- endfor -%}
|
100
|
+
{%- endfor -%}
|
101
|
+
</table>
|
102
|
+
{% endif %}
|
103
|
+
|
104
|
+
<p class="d-print-none mt-5">
|
105
|
+
<a href="{{ page.collection | prepend: '/' | prepend: site.baseurl }}" class="btn btn-light">
|
106
|
+
<i class="fas fa-users"></i> {{ site.data.lang[site.conference.lang].overview | default: "Overview" }}
|
107
|
+
</a>
|
108
|
+
</p>
|
109
|
+
|
110
|
+
{%- include partials/footer.html -%}
|
111
|
+
{%- endunless -%}
|
@@ -1,43 +1,43 @@
|
|
1
|
-
{% include partials/header.html %}
|
2
|
-
|
3
|
-
<h1 class="display-5 mb-4">
|
4
|
-
{% if page.title %}
|
5
|
-
{{ page.title }}
|
6
|
-
{% else %}
|
7
|
-
{{ site.data.lang[site.conference.lang].live.stream | default: "Live Streams" }}
|
8
|
-
{% endif %}
|
9
|
-
</h1>
|
10
|
-
|
11
|
-
{{ content }}
|
12
|
-
|
13
|
-
{%- assign nbr_streams = 0 -%}
|
14
|
-
{%- for room in site.rooms -%}
|
15
|
-
{%- if room.live -%}
|
16
|
-
{%- assign mod_nbr_streams = nbr_streams | modulo: 2 -%}
|
17
|
-
{%- if mod_nbr_streams == 0 %}
|
18
|
-
<div class="row">
|
19
|
-
{%- endif %}
|
20
|
-
|
21
|
-
<div class="col-md mb-4">
|
22
|
-
<h3>{{ room.name }}</h3>
|
23
|
-
<div class="embed-responsive embed-responsive-16by9">
|
24
|
-
{%- include partials/get_room_live_href.html %}
|
25
|
-
<iframe class="embed-responsive-item" src="{{ room_live_href }}" allowfullscreen></iframe>
|
26
|
-
</div>
|
27
|
-
</div>
|
28
|
-
|
29
|
-
{%- if mod_nbr_streams == 1 %}
|
30
|
-
</div>
|
31
|
-
{%- endif -%}
|
32
|
-
|
33
|
-
{%- assign nbr_streams = nbr_streams | plus: 1 -%}
|
34
|
-
{%- endif -%}
|
35
|
-
{%- endfor %}
|
36
|
-
|
37
|
-
{% assign mod_nbr_streams = nbr_streams | modulo: 2 %}
|
38
|
-
{%- if mod_nbr_streams == 1 %}
|
39
|
-
<div class="col-md"></div>
|
40
|
-
</div>
|
41
|
-
{%- endif %}
|
42
|
-
|
43
|
-
{% include partials/footer.html %}
|
1
|
+
{% include partials/header.html %}
|
2
|
+
|
3
|
+
<h1 class="display-5 mb-4 text-break">
|
4
|
+
{% if page.title %}
|
5
|
+
{{ page.title }}
|
6
|
+
{% else %}
|
7
|
+
{{ site.data.lang[site.conference.lang].live.stream | default: "Live Streams" }}
|
8
|
+
{% endif %}
|
9
|
+
</h1>
|
10
|
+
|
11
|
+
{{ content }}
|
12
|
+
|
13
|
+
{%- assign nbr_streams = 0 -%}
|
14
|
+
{%- for room in site.rooms -%}
|
15
|
+
{%- if room.live -%}
|
16
|
+
{%- assign mod_nbr_streams = nbr_streams | modulo: 2 -%}
|
17
|
+
{%- if mod_nbr_streams == 0 %}
|
18
|
+
<div class="row">
|
19
|
+
{%- endif %}
|
20
|
+
|
21
|
+
<div class="col-md mb-4">
|
22
|
+
<h3>{{ room.name }}</h3>
|
23
|
+
<div class="embed-responsive embed-responsive-16by9">
|
24
|
+
{%- include partials/get_room_live_href.html %}
|
25
|
+
<iframe class="embed-responsive-item" src="{{ room_live_href }}" allowfullscreen></iframe>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
{%- if mod_nbr_streams == 1 %}
|
30
|
+
</div>
|
31
|
+
{%- endif -%}
|
32
|
+
|
33
|
+
{%- assign nbr_streams = nbr_streams | plus: 1 -%}
|
34
|
+
{%- endif -%}
|
35
|
+
{%- endfor %}
|
36
|
+
|
37
|
+
{% assign mod_nbr_streams = nbr_streams | modulo: 2 %}
|
38
|
+
{%- if mod_nbr_streams == 1 %}
|
39
|
+
<div class="col-md"></div>
|
40
|
+
</div>
|
41
|
+
{%- endif %}
|
42
|
+
|
43
|
+
{% include partials/footer.html %}
|
data/_layouts/talk-overview.html
CHANGED
@@ -1,112 +1,112 @@
|
|
1
|
-
{% include partials/header.html %}
|
2
|
-
|
3
|
-
<h1 class="display-5 mb-4">
|
4
|
-
{%- if page.title -%}
|
5
|
-
{{- page.title -}}
|
6
|
-
{%- else -%}
|
7
|
-
{{- site.data.lang[site.conference.lang].talk.overview | default: "Talks" -}}
|
8
|
-
{%- endif -%}
|
9
|
-
</h1>
|
10
|
-
|
11
|
-
{{ content }}
|
12
|
-
|
13
|
-
{% for main_category in site.conference.talks.main_categories %}
|
14
|
-
<h3 class="mt-4 mb-3">
|
15
|
-
<span class="badge border-soft-{{ main_category.color }} bg-soft-{{ main_category.color }} d-block d-sm-inline text-wrap">
|
16
|
-
{{ main_category.name }}
|
17
|
-
</span>
|
18
|
-
</h3>
|
19
|
-
<ul class="list-unstyled">
|
20
|
-
{% for talk in site.talks -%}
|
21
|
-
{%- for cat in talk.categories -%}
|
22
|
-
{%- if cat == main_category.name -%}
|
23
|
-
{%- assign main_cat = main_category.name -%}
|
24
|
-
<li class="pl-2 mb-2 border-soft-{{ main_category.color }}">
|
25
|
-
<p class="mb-0">
|
26
|
-
{% include partials/show_talk.html %}
|
27
|
-
</p>
|
28
|
-
<p class="font-weight-light mb-0">
|
29
|
-
{% include partials/list_speakers.html %}
|
30
|
-
</p>
|
31
|
-
|
32
|
-
{% if talk.hide -%}
|
33
|
-
{%- assign talk_scheduled = false -%}
|
34
|
-
{%- for d in site.data.program.days -%}
|
35
|
-
{%- include partials/get_day_hash.html -%}
|
36
|
-
{%- for r in d.rooms -%}
|
37
|
-
{%- assign room = site.rooms | where: 'name', r.name | first -%}
|
38
|
-
{%- for t in r.talks -%}
|
39
|
-
{%- if talk.name == t.name -%}
|
40
|
-
<p class="mb-0">
|
41
|
-
|
42
|
-
{%- if site.conference.live -%}
|
43
|
-
{%- include partials/get_talk_timestamp.html -%}
|
44
|
-
<span class="live-hide" data-start="{{ timestamp_start }}" data-end="{{ timestamp_end }}">
|
45
|
-
{%- endif -%}
|
46
|
-
|
47
|
-
{%- include partials/get_time_pronoun.html -%}
|
48
|
-
{%- include partials/get_talk_time.html -%}
|
49
|
-
{{- time_pronoun }} {% include partials/show_talk_time.html %}
|
50
|
-
|
51
|
-
{%- if site.conference.live -%}
|
52
|
-
</span>
|
53
|
-
{%- include partials/show_live_button.html -%}
|
54
|
-
{%- endif %}
|
55
|
-
|
56
|
-
{{ site.data.lang[site.conference.lang].pronoun.in | default: "in" }} {% include partials/show_room.html -%}
|
57
|
-
</p>
|
58
|
-
|
59
|
-
{%- assign talk_scheduled = true -%}
|
60
|
-
{%- break -%}
|
61
|
-
{%- endif -%}
|
62
|
-
{%- endfor -%}
|
63
|
-
|
64
|
-
{%- if talk_scheduled -%}
|
65
|
-
{%- break -%}
|
66
|
-
{%- endif -%}
|
67
|
-
{%- endfor -%}
|
68
|
-
|
69
|
-
{%- if talk_scheduled -%}
|
70
|
-
{%- break -%}
|
71
|
-
{%- endif -%}
|
72
|
-
{%- endfor -%}
|
73
|
-
{%- endif %}
|
74
|
-
|
75
|
-
<p class="mb-0">
|
76
|
-
{%- if site.conference.live and talk.hide != true -%}
|
77
|
-
{% for d in site.data.program.days -%}
|
78
|
-
{%- for r in d.rooms -%}
|
79
|
-
{%- for t in r.talks -%}
|
80
|
-
{%- if talk.name == t.name -%}
|
81
|
-
{%- assign live_button_styleclass = "mr-1" -%}
|
82
|
-
{%- include partials/show_live_button.html -%}
|
83
|
-
{%- endif -%}
|
84
|
-
{%- endfor -%}
|
85
|
-
{%- endfor -%}
|
86
|
-
{%- endfor -%}
|
87
|
-
{%- endif -%}
|
88
|
-
{%- include partials/list_sub_categories.html -%}
|
89
|
-
|
90
|
-
{%- include partials/get_link_types.html -%}
|
91
|
-
{%- if has_icon_links and site.conference.talks.hide_icons != true -%}
|
92
|
-
{% for link in talk.links -%}
|
93
|
-
{%- assign link_styleclass = "badge badge-light text-reset font-weight-normal mr-1" -%}
|
94
|
-
{%- include partials/get_link.html -%}
|
95
|
-
{%- if link_icon -%}
|
96
|
-
{{- link_tag -}}
|
97
|
-
<i class="fas fa-{{ link_icon }} text-secondary"></i>
|
98
|
-
</a>
|
99
|
-
{%- endif -%}
|
100
|
-
{%- endfor %}
|
101
|
-
{%- endif %}
|
102
|
-
</p>
|
103
|
-
|
104
|
-
</li>
|
105
|
-
{%- break -%}
|
106
|
-
{%- endif -%}
|
107
|
-
{%- endfor -%}
|
108
|
-
{%- endfor %}
|
109
|
-
</ul>
|
110
|
-
{%- endfor -%}
|
111
|
-
|
112
|
-
{% include partials/footer.html %}
|
1
|
+
{% include partials/header.html %}
|
2
|
+
|
3
|
+
<h1 class="display-5 mb-4 text-break">
|
4
|
+
{%- if page.title -%}
|
5
|
+
{{- page.title -}}
|
6
|
+
{%- else -%}
|
7
|
+
{{- site.data.lang[site.conference.lang].talk.overview | default: "Talks" -}}
|
8
|
+
{%- endif -%}
|
9
|
+
</h1>
|
10
|
+
|
11
|
+
{{ content }}
|
12
|
+
|
13
|
+
{% for main_category in site.conference.talks.main_categories %}
|
14
|
+
<h3 class="mt-4 mb-3">
|
15
|
+
<span class="badge border-soft-{{ main_category.color }} bg-soft-{{ main_category.color }} d-block d-sm-inline text-wrap">
|
16
|
+
{{ main_category.name }}
|
17
|
+
</span>
|
18
|
+
</h3>
|
19
|
+
<ul class="list-unstyled">
|
20
|
+
{% for talk in site.talks -%}
|
21
|
+
{%- for cat in talk.categories -%}
|
22
|
+
{%- if cat == main_category.name -%}
|
23
|
+
{%- assign main_cat = main_category.name -%}
|
24
|
+
<li class="pl-2 mb-2 border-soft-{{ main_category.color }}">
|
25
|
+
<p class="mb-0">
|
26
|
+
{% include partials/show_talk.html %}
|
27
|
+
</p>
|
28
|
+
<p class="font-weight-light mb-0">
|
29
|
+
{% include partials/list_speakers.html %}
|
30
|
+
</p>
|
31
|
+
|
32
|
+
{% if talk.hide -%}
|
33
|
+
{%- assign talk_scheduled = false -%}
|
34
|
+
{%- for d in site.data.program.days -%}
|
35
|
+
{%- include partials/get_day_hash.html -%}
|
36
|
+
{%- for r in d.rooms -%}
|
37
|
+
{%- assign room = site.rooms | where: 'name', r.name | first -%}
|
38
|
+
{%- for t in r.talks -%}
|
39
|
+
{%- if talk.name == t.name -%}
|
40
|
+
<p class="mb-0">
|
41
|
+
|
42
|
+
{%- if site.conference.live -%}
|
43
|
+
{%- include partials/get_talk_timestamp.html -%}
|
44
|
+
<span class="live-hide" data-start="{{ timestamp_start }}" data-end="{{ timestamp_end }}">
|
45
|
+
{%- endif -%}
|
46
|
+
|
47
|
+
{%- include partials/get_time_pronoun.html -%}
|
48
|
+
{%- include partials/get_talk_time.html -%}
|
49
|
+
{{- time_pronoun }} {% include partials/show_talk_time.html %}
|
50
|
+
|
51
|
+
{%- if site.conference.live -%}
|
52
|
+
</span>
|
53
|
+
{%- include partials/show_live_button.html -%}
|
54
|
+
{%- endif %}
|
55
|
+
|
56
|
+
{{ site.data.lang[site.conference.lang].pronoun.in | default: "in" }} {% include partials/show_room.html -%}
|
57
|
+
</p>
|
58
|
+
|
59
|
+
{%- assign talk_scheduled = true -%}
|
60
|
+
{%- break -%}
|
61
|
+
{%- endif -%}
|
62
|
+
{%- endfor -%}
|
63
|
+
|
64
|
+
{%- if talk_scheduled -%}
|
65
|
+
{%- break -%}
|
66
|
+
{%- endif -%}
|
67
|
+
{%- endfor -%}
|
68
|
+
|
69
|
+
{%- if talk_scheduled -%}
|
70
|
+
{%- break -%}
|
71
|
+
{%- endif -%}
|
72
|
+
{%- endfor -%}
|
73
|
+
{%- endif %}
|
74
|
+
|
75
|
+
<p class="mb-0">
|
76
|
+
{%- if site.conference.live and talk.hide != true -%}
|
77
|
+
{% for d in site.data.program.days -%}
|
78
|
+
{%- for r in d.rooms -%}
|
79
|
+
{%- for t in r.talks -%}
|
80
|
+
{%- if talk.name == t.name -%}
|
81
|
+
{%- assign live_button_styleclass = "mr-1" -%}
|
82
|
+
{%- include partials/show_live_button.html -%}
|
83
|
+
{%- endif -%}
|
84
|
+
{%- endfor -%}
|
85
|
+
{%- endfor -%}
|
86
|
+
{%- endfor -%}
|
87
|
+
{%- endif -%}
|
88
|
+
{%- include partials/list_sub_categories.html -%}
|
89
|
+
|
90
|
+
{%- include partials/get_link_types.html -%}
|
91
|
+
{%- if has_icon_links and site.conference.talks.hide_icons != true -%}
|
92
|
+
{% for link in talk.links -%}
|
93
|
+
{%- assign link_styleclass = "badge badge-light text-reset font-weight-normal mr-1" -%}
|
94
|
+
{%- include partials/get_link.html -%}
|
95
|
+
{%- if link_icon -%}
|
96
|
+
{{- link_tag -}}
|
97
|
+
<i class="fas fa-{{ link_icon }} text-secondary"></i>
|
98
|
+
</a>
|
99
|
+
{%- endif -%}
|
100
|
+
{%- endfor %}
|
101
|
+
{%- endif %}
|
102
|
+
</p>
|
103
|
+
|
104
|
+
</li>
|
105
|
+
{%- break -%}
|
106
|
+
{%- endif -%}
|
107
|
+
{%- endfor -%}
|
108
|
+
{%- endfor %}
|
109
|
+
</ul>
|
110
|
+
{%- endfor -%}
|
111
|
+
|
112
|
+
{% include partials/footer.html %}
|
data/_layouts/talk.html
CHANGED
@@ -1,123 +1,123 @@
|
|
1
|
-
{%- assign talk = page -%}
|
2
|
-
|
3
|
-
{%- unless talk.hide -%}
|
4
|
-
{%- include partials/header.html -%}
|
5
|
-
|
6
|
-
<div class="d-flex flex-
|
7
|
-
<div class="h6 mt-2 mb-0 mr-1 pr-1 pb-1">
|
8
|
-
{% include partials/get_main_category.html %}
|
9
|
-
<span class="p-1 pl-2 pr-2 border-soft-{{ main_cat_color }} bg-soft-{{ main_cat_color }} font-weight-normal">
|
10
|
-
{{ main_cat }}
|
11
|
-
</span>
|
12
|
-
</div>
|
13
|
-
|
14
|
-
{% if talk.categories.size > 1 %}
|
15
|
-
<div class="h6 mt-2 mb-0 ml-1 pr-1 pb-1">
|
16
|
-
{% for cat in talk.categories %}
|
17
|
-
{% if cat != main_cat %}
|
18
|
-
<span class="mr-2">{{ cat }}</span>
|
19
|
-
{% endif %}
|
20
|
-
{% endfor %}
|
21
|
-
</div>
|
22
|
-
{% endif %}
|
23
|
-
</div>
|
24
|
-
|
25
|
-
<h1 class="font-weight-light">{{ talk.name }}</h1>
|
26
|
-
|
27
|
-
<p class="mb-3 font-weight-light">
|
28
|
-
{% include partials/list_speakers.html %}
|
29
|
-
</p>
|
30
|
-
|
31
|
-
<div class="mb-3 p-0">
|
32
|
-
{% for d in site.data.program.days -%}
|
33
|
-
{%- include partials/get_day_hash.html -%}
|
34
|
-
{%- for r in d.rooms -%}
|
35
|
-
{%- for t in r.talks -%}
|
36
|
-
{%- if talk.name == t.name -%}
|
37
|
-
|
38
|
-
{%- if site.conference.live -%}
|
39
|
-
{%- include partials/get_talk_timestamp.html -%}
|
40
|
-
<span class="live-hide" data-start="{{ timestamp_start }}" data-end="{{ timestamp_end }}">
|
41
|
-
{%- endif -%}
|
42
|
-
|
43
|
-
{%- include partials/get_time_pronoun.html -%}
|
44
|
-
{%- include partials/get_talk_time.html -%}
|
45
|
-
<span class="d-none d-sm-inline">
|
46
|
-
{{- time_pronoun -}}
|
47
|
-
</span> {% include partials/show_talk_time.html -%}
|
48
|
-
|
49
|
-
{%- if site.conference.live -%}
|
50
|
-
</span>
|
51
|
-
{%- include partials/show_live_button.html -%}
|
52
|
-
{%- endif -%}
|
53
|
-
|
54
|
-
{%- assign room = site.rooms | where: 'name', r.name | first -%}
|
55
|
-
<span class="d-none d-sm-inline ml-1">
|
56
|
-
{{- site.data.lang[site.conference.lang].pronoun.in | default: "in" -}}
|
57
|
-
</span> {% include partials/show_room.html -%}
|
58
|
-
|
59
|
-
<span class="d-none d-sm-inline ml-1">
|
60
|
-
{{- site.data.lang[site.conference.lang].pronoun.for | default: "for" -}}
|
61
|
-
</span> {% include partials/show_talk_duration.html -%}
|
62
|
-
|
63
|
-
{% endif %}
|
64
|
-
{% endfor %}
|
65
|
-
{% endfor %}
|
66
|
-
{% endfor %}
|
67
|
-
</div>
|
68
|
-
|
69
|
-
{{ content }}
|
70
|
-
|
71
|
-
{% include partials/get_link_types.html %}
|
72
|
-
|
73
|
-
{% if has_icon_links %}
|
74
|
-
<ul class="list-unstyled">
|
75
|
-
{% for link in talk.links %}
|
76
|
-
{% assign link_styleclass = "text-reset" %}
|
77
|
-
{% include partials/get_link.html %}
|
78
|
-
|
79
|
-
{% if link_icon %}
|
80
|
-
<li class="mb-1">
|
81
|
-
{{ link_tag }}
|
82
|
-
<span class="badge bg-soft-{{ main_cat_color }} font-weight-normal mr-1">
|
83
|
-
<i class="fas fa-{{ link_icon }} fa-fw"></i>
|
84
|
-
</span>
|
85
|
-
{{- link.name }}
|
86
|
-
</a>
|
87
|
-
</li>
|
88
|
-
{% endif %}
|
89
|
-
{% endfor %}
|
90
|
-
</ul>
|
91
|
-
{% endif %}
|
92
|
-
|
93
|
-
{% if has_regular_links %}
|
94
|
-
<h5 class="mt-4 mb-1">{{ site.data.lang[site.conference.lang].more_information | default: "More information" }}:</h5>
|
95
|
-
|
96
|
-
<ul class="list-unstyled">
|
97
|
-
{% for link in talk.links %}
|
98
|
-
{% assign link_styleclass = "text-reset" %}
|
99
|
-
{% include partials/get_link.html %}
|
100
|
-
|
101
|
-
{% unless link_icon %}
|
102
|
-
<li class="mb-1 ml-2 pl-2 border-soft-{{ main_cat_color }}">
|
103
|
-
{{ link_tag }}
|
104
|
-
{{ link.name }}
|
105
|
-
</a>
|
106
|
-
</li>
|
107
|
-
{% endunless %}
|
108
|
-
{% endfor %}
|
109
|
-
</ul>
|
110
|
-
{% endif %}
|
111
|
-
|
112
|
-
<p class="d-print-none mt-5">
|
113
|
-
<a href="{{ page.collection | prepend: '/' | prepend: site.baseurl }}" class="btn btn-light">
|
114
|
-
<i class="fas fa-bullhorn"></i> {{ site.data.lang[site.conference.lang].overview | default: "Overview" }}
|
115
|
-
</a>
|
116
|
-
|
117
|
-
<a href="{{ site.conference.program.url | prepend: site.baseurl }}" class="btn btn-light">
|
118
|
-
<i class="far fa-calendar-alt"></i> {{ site.data.lang[site.conference.lang].program.title | default: "Program" }}
|
119
|
-
</a>
|
120
|
-
</p>
|
121
|
-
|
122
|
-
{%- include partials/footer.html -%}
|
123
|
-
{%- endunless -%}
|
1
|
+
{%- assign talk = page -%}
|
2
|
+
|
3
|
+
{%- unless talk.hide -%}
|
4
|
+
{%- include partials/header.html -%}
|
5
|
+
|
6
|
+
<div class="d-flex flex-md-row flex-column container-fluid mb-2 p-0">
|
7
|
+
<div class="h6 mt-2 mb-0 mr-1 pr-1 pb-1">
|
8
|
+
{% include partials/get_main_category.html %}
|
9
|
+
<span class="d-block d-sm-inline p-1 pl-2 pr-2 border-soft-{{ main_cat_color }} bg-soft-{{ main_cat_color }} font-weight-normal">
|
10
|
+
{{ main_cat }}
|
11
|
+
</span>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
{% if talk.categories.size > 1 %}
|
15
|
+
<div class="h6 mt-2 mb-0 ml-1 pr-1 pb-1">
|
16
|
+
{% for cat in talk.categories %}
|
17
|
+
{% if cat != main_cat %}
|
18
|
+
<span class="mr-2">{{ cat }}</span>
|
19
|
+
{% endif %}
|
20
|
+
{% endfor %}
|
21
|
+
</div>
|
22
|
+
{% endif %}
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<h1 class="font-weight-light text-break">{{ talk.name }}</h1>
|
26
|
+
|
27
|
+
<p class="mb-3 font-weight-light">
|
28
|
+
{% include partials/list_speakers.html %}
|
29
|
+
</p>
|
30
|
+
|
31
|
+
<div class="mb-3 p-0">
|
32
|
+
{% for d in site.data.program.days -%}
|
33
|
+
{%- include partials/get_day_hash.html -%}
|
34
|
+
{%- for r in d.rooms -%}
|
35
|
+
{%- for t in r.talks -%}
|
36
|
+
{%- if talk.name == t.name -%}
|
37
|
+
|
38
|
+
{%- if site.conference.live -%}
|
39
|
+
{%- include partials/get_talk_timestamp.html -%}
|
40
|
+
<span class="live-hide" data-start="{{ timestamp_start }}" data-end="{{ timestamp_end }}">
|
41
|
+
{%- endif -%}
|
42
|
+
|
43
|
+
{%- include partials/get_time_pronoun.html -%}
|
44
|
+
{%- include partials/get_talk_time.html -%}
|
45
|
+
<span class="d-none d-sm-inline">
|
46
|
+
{{- time_pronoun -}}
|
47
|
+
</span> {% include partials/show_talk_time.html -%}
|
48
|
+
|
49
|
+
{%- if site.conference.live -%}
|
50
|
+
</span>
|
51
|
+
{%- include partials/show_live_button.html -%}
|
52
|
+
{%- endif -%}
|
53
|
+
|
54
|
+
{%- assign room = site.rooms | where: 'name', r.name | first -%}
|
55
|
+
<span class="d-none d-sm-inline ml-1">
|
56
|
+
{{- site.data.lang[site.conference.lang].pronoun.in | default: "in" -}}
|
57
|
+
</span> {% include partials/show_room.html -%}
|
58
|
+
|
59
|
+
<span class="d-none d-sm-inline ml-1">
|
60
|
+
{{- site.data.lang[site.conference.lang].pronoun.for | default: "for" -}}
|
61
|
+
</span> {% include partials/show_talk_duration.html -%}
|
62
|
+
|
63
|
+
{% endif %}
|
64
|
+
{% endfor %}
|
65
|
+
{% endfor %}
|
66
|
+
{% endfor %}
|
67
|
+
</div>
|
68
|
+
|
69
|
+
{{ content }}
|
70
|
+
|
71
|
+
{% include partials/get_link_types.html %}
|
72
|
+
|
73
|
+
{% if has_icon_links %}
|
74
|
+
<ul class="list-unstyled">
|
75
|
+
{% for link in talk.links %}
|
76
|
+
{% assign link_styleclass = "text-reset" %}
|
77
|
+
{% include partials/get_link.html %}
|
78
|
+
|
79
|
+
{% if link_icon %}
|
80
|
+
<li class="mb-1">
|
81
|
+
{{ link_tag }}
|
82
|
+
<span class="badge bg-soft-{{ main_cat_color }} font-weight-normal mr-1">
|
83
|
+
<i class="fas fa-{{ link_icon }} fa-fw"></i>
|
84
|
+
</span>
|
85
|
+
{{- link.name }}
|
86
|
+
</a>
|
87
|
+
</li>
|
88
|
+
{% endif %}
|
89
|
+
{% endfor %}
|
90
|
+
</ul>
|
91
|
+
{% endif %}
|
92
|
+
|
93
|
+
{% if has_regular_links %}
|
94
|
+
<h5 class="mt-4 mb-1">{{ site.data.lang[site.conference.lang].more_information | default: "More information" }}:</h5>
|
95
|
+
|
96
|
+
<ul class="list-unstyled">
|
97
|
+
{% for link in talk.links %}
|
98
|
+
{% assign link_styleclass = "text-reset" %}
|
99
|
+
{% include partials/get_link.html %}
|
100
|
+
|
101
|
+
{% unless link_icon %}
|
102
|
+
<li class="mb-1 ml-2 pl-2 border-soft-{{ main_cat_color }}">
|
103
|
+
{{ link_tag }}
|
104
|
+
{{ link.name }}
|
105
|
+
</a>
|
106
|
+
</li>
|
107
|
+
{% endunless %}
|
108
|
+
{% endfor %}
|
109
|
+
</ul>
|
110
|
+
{% endif %}
|
111
|
+
|
112
|
+
<p class="d-print-none mt-5">
|
113
|
+
<a href="{{ page.collection | prepend: '/' | prepend: site.baseurl }}" class="btn btn-light">
|
114
|
+
<i class="fas fa-bullhorn"></i> {{ site.data.lang[site.conference.lang].overview | default: "Overview" }}
|
115
|
+
</a>
|
116
|
+
|
117
|
+
<a href="{{ site.conference.program.url | prepend: site.baseurl }}" class="btn btn-light">
|
118
|
+
<i class="far fa-calendar-alt"></i> {{ site.data.lang[site.conference.lang].program.title | default: "Program" }}
|
119
|
+
</a>
|
120
|
+
</p>
|
121
|
+
|
122
|
+
{%- include partials/footer.html -%}
|
123
|
+
{%- endunless -%}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-conference
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lorenz Schmid
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -287,7 +287,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
287
287
|
- !ruby/object:Gem::Version
|
288
288
|
version: '0'
|
289
289
|
requirements: []
|
290
|
-
rubygems_version: 3.
|
290
|
+
rubygems_version: 3.4.19
|
291
291
|
signing_key:
|
292
292
|
specification_version: 4
|
293
293
|
summary: Jekyll template for a conference website containing program, speaker, talks
|