1
1
---
2
2
layout: landing-page
3
- ---
3
+ ---
4
+
4
5
5
-
6
6
<!-- Loading the carousel for the gallery -->
7
7
8
8
< link rel ="stylesheet " href ="/owlcarousel/owl.carousel.min.css ">
11
11
<!-- Main -->
12
12
< article id ="main " style ="background-color: var(--dark-grey); ">
13
13
14
- <!-- Banner -->
14
+ <!-- Banner -->
15
15
< div style ="text-align: center; ">
16
16
< div id ="banner " class ="background " >
17
- < img class ="background-image " src ="css/images/banner_quarre.jpg "/>
17
+ < img class ="background-image " src ="css/images/banner_quarre.jpg "/>
18
18
19
19
< div class ="overlay ">
20
20
< div class ="inner ">
21
21
< header >
22
- <!-- Logo -->
22
+ <!-- Logo -->
23
23
< div style ="display:flex; justify-content:center; align-items: center; ">
24
- < image class ="software-logo " src ="/assets/score-logo.png "/>
24
+ < image class ="software-logo " src ="/assets/score-logo.png " alt =" score logo " />
25
25
< h2 class ="software "> ossia score</ h2 >
26
26
</ div >
27
-
27
+
28
28
< div class ="line "> </ div >
29
- <!-- Short description -->
29
+ <!-- Short description -->
30
30
< h2 class ="catchphrase "> A free and open-source sequencer</ h2 >
31
-
31
+
32
32
< p style ="font-size: 20px; "> A < b > free, open-source, cross-platform intermedia sequencer </ b > for precise and flexible scripting of < b > interactive</ b > scenarios. < br /> Control and score any OSC-compliant software or hardware:
33
33
Max/MSP, PureData, openFrameworks, Processing… </ p >
34
34
< br />
35
- <!-- Download button -->
35
+ <!-- Download button -->
36
36
< a href ="/score/download.html " class ="download "> Download</ a >
37
37
</ header >
38
-
39
- </ div >
40
- </ div >
38
+
39
+ </ div >
40
+ </ div >
41
41
</ div >
42
42
</ div >
43
43
<!-- Awards -->
44
44
< section id ="index " class ="white " style ="padding-top: 4em; ">
45
- < h2 style ="text-align: center; " > < span class ="title-section " style ="color: black; border-color:var(--orange); "> Supporting organizations</ span > </ h2 >
45
+ < h2 style ="text-align: center; " > < span class ="title-section " style ="color: black; border-color:var(--orange); "> Supporting organizations</ span > </ h2 >
46
46
< div class ="logo-grid " style ="padding-top: 0.1em; ">
47
47
< a href ="https://www.unrealengine.com/ "> < img loading ="lazy " src ="/assets/logo/unreal_engine.png " width ="80 " height ="auto "/> </ a >
48
48
< a href ="https://www.mozilla.org/ " > < img loading ="lazy " src ="/assets/logo/mozilla-logo.png "/> </ a >
@@ -54,20 +54,20 @@ <h2 style="text-align: center;" ><span class="title-section" style="color: black
54
54
< a href ="https://www.blueyeti.fr/ "> < img loading ="lazy " src ="/assets/logo/blueyeti.png " /> </ a >
55
55
</ div >
56
56
</ section >
57
-
57
+
58
58
<!-- Features -->
59
59
< div id ="overlay " onclick ="hideOverlay() ">
60
60
< img id ="overlay-image " loading ="lazy " src ="/assets/score.png "/>
61
61
</ div >
62
62
< section id ="index " class ="dark-grey " >
63
- < h2 style ="text-align: center; " > < a href ="/score/features.html " class ="title-section "> What is ossia score ?</ a > </ h2 >
63
+ < h2 style ="text-align: center; " > < a href ="/score/features.html " class ="title-section "> What is ossia score ?</ a > </ h2 >
64
64
< div class ="feature-container ">
65
65
< div class ="feature image-container ">
66
66
< img onclick ="displayInOverlay(this.src) " loading ="lazy " src ="/assets/score.png "/>
67
67
</ div >
68
68
< div class ="feature text " >
69
69
< h2 > An intermedia sequencer</ h2 >
70
- < p > Sequence various kinds of media in an intelligent timeline:
70
+ < p > Sequence various kinds of media in an intelligent timeline:
71
71
< ul >
72
72
< li > Playback most audio formats, with support for multichannel</ li >
73
73
< li > H.264 and HAP video playback, with a state-of-the art cross-platform video & shader pipeline</ li >
@@ -123,8 +123,8 @@ <h2>Mixed modular & timeline workflow</h2>
123
123
</ div >
124
124
</ div >
125
125
</ section >
126
-
127
-
126
+
127
+
128
128
129
129
< section id ="index " class ="white ">
130
130
< div class ="feature-container reversed ">
@@ -190,79 +190,79 @@ <h2>Compatible environments</h2>
190
190
</ div >
191
191
</ div >
192
192
</ section >
193
-
193
+
194
194
<!-- Recent posts and twitter feed -->
195
195
< section class ="white blog-twitter " id ="index ">
196
196
< div style ="display: flex; justify-content: space-around; margin: 0; ">
197
197
< div class ="blog-list ">
198
- < h2 style ="text-align: center; " > < a href ="/blog.html " class ="title-section "> Blog</ a > </ h2 >
199
-
198
+ < h2 style ="text-align: center; " > < a href ="/blog.html " class ="title-section "> Blog</ a > </ h2 >
199
+
200
200
< div class ="recent-post-view ">
201
201
{% for post in site.posts limit:2 %}
202
- < a href ={{post.url}} class ="thumbnail " >
203
- {% if post.image %}
202
+ < a href ={{post.url}} class ="thumbnail " >
203
+ {% if post.image %}
204
204
< img loading ="lazy " class ="thumbnail-blogpost " src ={{post.image}} width ="auto "/>
205
205
{% else %}
206
206
< img loading ="lazy " class ="thumbnail-blogpost " src ="assets/default_post_thumbnail.png "/>
207
207
{% endif %}
208
208
< br />
209
209
< h1 class ="blog-title "> {{post.title}} </ h1 >
210
210
< span class ="blog-date "> {{ post.date | date: "%b %-d, %Y" }}</ span >
211
-
211
+
212
212
</ a >
213
213
{% endfor %}
214
- </ div >
214
+ </ div >
215
215
</ div >
216
216
<!-- Twitter timeline -->
217
217
< div class ="twitter " style ="width: 30%; ">
218
218
< h2 > < a class ="twitter-timeline " data-tweet-limit ="1 " href ="https://twitter.com/ossia_io?ref_src=twsrc%5Etfw "> Tweets by ossia_io</ a > </ h2 >
219
219
</ div >
220
220
</ div >
221
- </ section >
222
-
221
+ </ section >
222
+
223
223
<!-- Gallery -->
224
224
< section id ="index " class ="black ">
225
- < h2 style ="text-align: center; " > < a href ="/gallery.html " class ="title-section "> Gallery</ a > </ h2 >
225
+ < h2 style ="text-align: center; " > < a href ="/gallery.html " class ="title-section "> Gallery</ a > </ h2 >
226
226
< div class ="owl-carousel owl-theme " >
227
227
< div class ="carouselcontainer ">
228
- < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="" data-echo ="assets/gallery/frontpage/carrousel-frontpage.jpg "/> </ a >
228
+ < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="Carrousel " data-echo ="assets/gallery/frontpage/carrousel-frontpage.jpg "/> </ a >
229
229
< header >
230
230
< a href ="https://www.abbayeauxdames.org/en/musicaventure/carrousel-musical/ " class ="gallery-text "> Carousel Musical</ a > < span class ="gallery-text "> -</ span > < a href ="https://www.blueyeti.fr/le-carrousel-musical-abbaye-aux-dames/ " class ="gallery-text "> Blue Yeti, Abbaye aux Dames</ a >
231
231
</ header >
232
232
</ div >
233
233
< div class ="carouselcontainer ">
234
- < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="" data-echo ="assets/gallery/frontpage/Nebula_ChampignonsNeigeJaune-frontpage.jpg "/> </ a >
234
+ < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="Nebula " data-echo ="assets/gallery/frontpage/Nebula_ChampignonsNeigeJaune-frontpage.jpg "/> </ a >
235
235
< header >
236
236
< a href ="https://www.baltazars.org/project/nebula/ " class ="gallery-text "> Nebula</ a > < span class ="gallery-text "> -</ span > < a href ="https://www.baltazars.org/ " class ="gallery-text "> Les Baltazars</ a >
237
237
</ header >
238
238
</ div >
239
239
< div class ="carouselcontainer ">
240
- < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="" data-echo ="assets/gallery/frontpage/DID_4858.JPG "/> </ a >
240
+ < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="Four For " data-echo ="assets/gallery/frontpage/DID_4858.JPG "/> </ a >
241
241
< header >
242
- < a href ="https://bravozoulou.fr/projets/four-for/ " class ="gallery-text "> Four For - Bravo Zoulou</ a >
242
+ < a href ="https://bravozoulou.fr/projets/four-for/ " class ="gallery-text "> Four For - Bravo Zoulou</ a >
243
243
< span class ="copyright "> < br /> © Didier Crasnault</ span >
244
244
</ header >
245
245
</ div >
246
246
< div class ="carouselcontainer ">
247
- < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="" data-echo ="assets/gallery/frontpage/quarre-frontpage.jpg "/> </ a >
247
+ < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="Quarrè " data-echo ="assets/gallery/frontpage/quarre-frontpage.jpg "/> </ a >
248
248
< header >
249
- < a href ="https://wpn214.com/en/ " class ="gallery-text "> Quarrè - Pierre Cochard</ a >
249
+ < a href ="https://wpn214.com/en/ " class ="gallery-text "> Quarrè - Pierre Cochard</ a >
250
250
</ header >
251
251
</ div >
252
252
< div class ="carouselcontainer " >
253
- < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="" data-echo ="assets/gallery/frontpage/dome_scrime-frontpage.jpg "/> </ a >
253
+ < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="Méta Chef d'Orchestre " data-echo ="assets/gallery/frontpage/dome_scrime-frontpage.jpg "/> </ a >
254
254
< header >
255
- < a href ="https://scrime.u-bordeaux.fr/Arts-Sciences/Residences/Residences/Meta-Chef-d-Orchestre " class ="gallery-text "> Méta Chef d’Orchestre - Serge Delaubier</ a >
255
+ < a href ="https://scrime.u-bordeaux.fr/Arts-Sciences/Residences/Residences/Meta-Chef-d-Orchestre " class ="gallery-text "> Méta Chef d’Orchestre - Serge Delaubier</ a >
256
256
</ header >
257
257
</ div >
258
258
< div class ="carouselcontainer " >
259
- < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="" data-echo ="assets/gallery/frontpage/sonotact-frontpage.jpg "/> </ a >
259
+ < a href ="/gallery.html "> < img loading ="lazy " class ="frontpage-gallery " src ="/assets/blank.png " alt ="Sonotact " data-echo ="assets/gallery/frontpage/sonotact-frontpage.jpg "/> </ a >
260
260
< header >
261
- < a href ="https://scrime.u-bordeaux.fr/Arts-Sciences/Residences/Residences/Sonotact " class ="gallery-text "> Sonotact - Pascale Criton</ a >
261
+ < a href ="https://scrime.u-bordeaux.fr/Arts-Sciences/Residences/Residences/Sonotact " class ="gallery-text "> Sonotact - Pascale Criton</ a >
262
262
</ header >
263
263
</ div >
264
264
</ div >
265
- </ section >
265
+ </ section >
266
266
</ article >
267
267
268
268
< script async src ="/owlcarousel/owl.carousel.min.js "> </ script >
0 commit comments