jekyll-theme-conference 2.2.0 → 2.5.0
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 +61 -9
- data/_includes/js/bootstrap.js +0 -1
- data/_includes/js/conference-live.js +307 -0
- data/_includes/js/conference-map.js +45 -0
- data/_includes/js/conference-modal.js +63 -0
- data/_includes/js/conference.js +16 -43
- data/_includes/js/leaflet-locatecontrol.js +0 -1
- data/_includes/js/leaflet.js +0 -1
- data/_includes/partials/checks.html +8 -3
- data/_includes/partials/footer.html +6 -2
- data/_includes/partials/get_conf_time.html +54 -0
- data/_includes/partials/get_link.html +22 -2
- data/_includes/partials/get_timestamp.html +4 -0
- data/_includes/partials/live-modal.html +29 -0
- data/_includes/partials/live_button.html +19 -0
- data/_includes/partials/navbar.html +30 -0
- data/_includes/partials/navbar_rooms.html +1 -1
- data/_includes/partials/show_room.html +1 -1
- data/_includes/partials/show_talk_duration.html +1 -1
- data/_includes/partials/show_talk_time.html +1 -1
- data/_layouts/location.html +1 -1
- data/_layouts/program.html +10 -50
- data/_layouts/room.html +6 -3
- data/_layouts/speaker-overview.html +1 -1
- data/_layouts/speaker.html +7 -5
- data/_layouts/talk-overview.html +12 -5
- data/_layouts/talk.html +21 -9
- data/_sass/conference.scss +28 -22
- data/assets/icons/live.svg +81 -0
- data/assets/js/main.js +1 -13
- metadata +10 -2
data/assets/js/main.js
CHANGED
@@ -4,19 +4,7 @@
|
|
4
4
|
{% include js/conference.js %}
|
5
5
|
|
6
6
|
(function() {
|
7
|
-
|
8
|
-
var home_coord = [{{ site.conference.location.map.home_coord }}];
|
9
|
-
var default_zoom = {{ site.conference.location.map.default_zoom | default: 17 }};
|
7
|
+
if (typeof map !== 'undefined') {
|
10
8
|
|
11
|
-
if (document.getElementById('map')) {
|
12
|
-
var map = L.map('map').setView(home_coord, default_zoom);
|
13
|
-
|
14
|
-
L.tileLayer.provider(map_provider).addTo(map);
|
15
|
-
|
16
|
-
L.easyButton('far fa-star', function(){
|
17
|
-
map.setView(home_coord, default_zoom);
|
18
|
-
}).addTo(map);
|
19
|
-
|
20
|
-
L.control.locate().addTo(map);
|
21
9
|
}
|
22
10
|
})();
|
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: 2.
|
4
|
+
version: 2.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lorenz Schmid
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -62,6 +62,9 @@ files:
|
|
62
62
|
- LICENSE.md
|
63
63
|
- README.md
|
64
64
|
- _includes/js/bootstrap.js
|
65
|
+
- _includes/js/conference-live.js
|
66
|
+
- _includes/js/conference-map.js
|
67
|
+
- _includes/js/conference-modal.js
|
65
68
|
- _includes/js/conference.js
|
66
69
|
- _includes/js/jquery-3.2.1.slim.min.js
|
67
70
|
- _includes/js/leaflet-easybutton.js
|
@@ -72,15 +75,19 @@ files:
|
|
72
75
|
- _includes/js/syncscroll.js
|
73
76
|
- _includes/partials/checks.html
|
74
77
|
- _includes/partials/footer.html
|
78
|
+
- _includes/partials/get_conf_time.html
|
75
79
|
- _includes/partials/get_link.html
|
76
80
|
- _includes/partials/get_link_types.html
|
77
81
|
- _includes/partials/get_main_category.html
|
78
82
|
- _includes/partials/get_talk_time.html
|
83
|
+
- _includes/partials/get_timestamp.html
|
79
84
|
- _includes/partials/header.html
|
80
85
|
- _includes/partials/info_bar.html
|
81
86
|
- _includes/partials/list_categories.html
|
82
87
|
- _includes/partials/list_speakers.html
|
83
88
|
- _includes/partials/list_sub_categories.html
|
89
|
+
- _includes/partials/live-modal.html
|
90
|
+
- _includes/partials/live_button.html
|
84
91
|
- _includes/partials/navbar.html
|
85
92
|
- _includes/partials/navbar_rooms.html
|
86
93
|
- _includes/partials/show_room.html
|
@@ -228,6 +235,7 @@ files:
|
|
228
235
|
- _sass/leaflet/leaflet-locatecontrol.css
|
229
236
|
- _sass/leaflet/leaflet.css
|
230
237
|
- assets/css/main.scss
|
238
|
+
- assets/icons/live.svg
|
231
239
|
- assets/js/main.js
|
232
240
|
- assets/webfonts/fa-brands-400.eot
|
233
241
|
- assets/webfonts/fa-brands-400.svg
|