Skip to content

Commit 963fc54

Browse files
committed
First commit
0 parents  commit 963fc54

File tree

155 files changed

+10968
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+10968
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
_site
2+
.sass-cache
3+
4+
Gemfile.lock
254 KB
Loading
19.5 KB
Loading
241 KB
Loading
18.3 KB
Loading

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages', group: :jekyll_plugins

LICENSE.txt

+63
Large diffs are not rendered by default.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Current color scheme:
2+
<img src="/assets/color_scheme.png" alt="">

_config.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Site settings
2+
title: ossia
3+
4+
description: > # this means to ignore newlines until "baseurl:"
5+
Open software system for interactive applications
6+
baseurl: "" # the subpath of your site, e.g. /blog/
7+
url: "http://locahost:4000" # the base hostname & protocol for your site
8+
twitter_username: jekyllrb
9+
github_username: jekyll
10+
image: "/assets/score-logo.png"
11+
include: ["_pages"]
12+
permalink: /posts/:title/
13+
# Build settings
14+
markdown: kramdown
15+

_includes/banner.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!-- Banner -->
2+
<div id="banner" class="background">
3+
<img class="background-image" src="assets/banner_quarre.jpg"/>
4+
5+
<div class="overlay">
6+
<div class="inner">
7+
<header>
8+
<!-- Logo -->
9+
<div style="display:flex; justify-content:center;">
10+
<image src="/assets/score-logo.png" height="80px" style="vertical-align:middle"/>
11+
<h2 class="software">ossia score</h2>
12+
</div>
13+
14+
<!-- Short description -->
15+
<p> <h2 style="color:white; margin-bottom: 0;">A free and open-source intermedia sequencer</h2>
16+
Enables precise and flexible scripting of interactive scenarios.
17+
<br />
18+
Control and score any OSC-compliant software or hardware:
19+
Max/MSP, PureData, openFrameworks, Processing…</p>
20+
<br />
21+
</header>
22+
<!-- Download button -->
23+
<a href="/download.html" class="download">Download ossia score</a>
24+
</div>
25+
</div>
26+
</div>

_includes/footer.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Footer -->
2+
<footer id="footer">
3+
4+
<h4 class="follow-us">Follow us !</h4>
5+
<ul class="icons">
6+
<li><a href="https://twitter.com/ossia_io" class="icon circle"><img src="/assets/social_media/Twitter_Social_Icon_Circle_Color.png" width="32px" /></a></li>
7+
<li><a href="https://github.com/OSSIA/score" class="icon circle"><img src="/assets/social_media/GitHub-Mark-Light-64px.png" width="32px" /></a></li>
8+
<li><a href="https://vimeo.com/ossia" class="icon circle"><img src="/assets/social_media/vimeo.png" width="32px" /></a></li>
9+
<li><a href="https://www.youtube.com/channel/UCwghQysyNdstRfv8YUPyglw" class="icon circle"><img src="/assets/social_media/youtube_social_circle_red.png" width="32px" /></a></li>
10+
<li><a href="https://www.facebook.com/ossia.io" class="icon circle"><img src="/assets/social_media/f_logo_RGB-Blue_58.png" width="34px" /></a></li>
11+
</ul>
12+
<ul class="copyright">
13+
<li>&copy; ossia 2020</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
14+
</ul>
15+
</footer>

_includes/head.html

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!--
2+
Twenty by HTML5 UP
3+
html5up.net | @n33co
4+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5+
-->
6+
7+
<head>
8+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
9+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
10+
<meta name="description" content="{{ site.description }}">
11+
<meta name="keywords" content="" />
12+
13+
<link rel="shortcut icon" type="image/png" href="/assets/favicon.png">
14+
<script src="/js/jquery.min.js"></script>
15+
<script src="/js/skel.min.js"></script>
16+
<script src="/js/skel-layers.min.js"></script>
17+
<script src="/js/init.js"></script>
18+
<noscript>
19+
<link rel="stylesheet" href="/css/skel.css" />
20+
<link rel="stylesheet" href="/css/style.css" />
21+
<link rel="stylesheet" href="/css/style-wide.css" />
22+
<link rel="stylesheet" href="/css/style-noscript.css" />
23+
</noscript>
24+
<meta name="viewport" content="width=device-width">
25+
26+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
27+
28+
<link rel="stylesheet"
29+
href="https://fonts.googleapis.com/css?family=Montserrat:regular,bold,bolditalic,semi-bold,black,blackitalic,light,medium|Catamaran:regular,bold,bolditalic,semi-bold,black,blackitalic,light,medium|Libre+Franklin:regular,bold,bolditalic,semi-bold,black,blackitalic,light,medium|Open+Sans:regular,bold,semi-bold,black,light,medium|Lato:regular,bold,semi-bold,black,light,medium">
30+
31+
<script>
32+
$(window).load(function() {
33+
$("body").addClass('all-loaded');
34+
});
35+
$(window).on('load',function(){
36+
$("#cover").hide();
37+
// $("#header").show();
38+
});
39+
</script>
40+
41+
</head>
42+
<div id="cover"></div>
43+

_includes/header.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<script>
2+
$(function(){
3+
$('.cat a').each(function(){
4+
var category_name = "site-" + this.text;
5+
if("{{page.category}}" === category_name){
6+
$(this).addClass('active');
7+
return false;
8+
}
9+
});
10+
});
11+
12+
// load asynchrnously videos to avoid slowing the page showing
13+
function init() {
14+
var vidDefer = document.getElementsByTagName('iframe');
15+
for (var i=0; i<vidDefer.length; i++) {
16+
if(vidDefer[i].getAttribute('data-src')) {
17+
vidDefer[i].setAttribute('src',vidDefer[i].getAttribute('data-src'));
18+
} } }
19+
window.onload = init;
20+
</script>
21+
22+
<header id="header">
23+
<nav id="nav" style="vertical-align: middle; ">
24+
<div style="padding-right: 5em;">
25+
<a id="homebtn" class="home-logo" style="margin: 0;" href="/">
26+
<image src="/assets/score-logo.png" height="45px"/>
27+
<h2 class="software small" style="padding: 0; padding-left: 0.2em;padding-bottom: 0.1em;">ossia</h2>
28+
</a>
29+
</div>
30+
<div class="cat" style="flex-grow:1;">
31+
<a href="/about-ossia-score.html">score</a>
32+
<a href="/libossia.html">libossia</a>
33+
<a href="/learn.html">learn</a>
34+
<a href="/community.html">community</a>
35+
<a href="/about.html">about</a>
36+
</div>
37+
<div>
38+
<a href="http://forum.ossia.io/" target="_blank" style="padding-left: 0; padding-right: 1em;">forum</a>
39+
<a href="https://gitter.im/OSSIA/score" target="_blank" style="padding:0; padding-right: 1em;">chat</a>
40+
</div>
41+
</nav>
42+
</header>

_layouts/about-page.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: default
3+
---
4+
5+
<script>
6+
$(function(){
7+
$('.menu a').each(function(){
8+
if("{{page.title}}" === this.text){
9+
$(this).addClass('active');
10+
return false;
11+
}
12+
});
13+
});
14+
</script>
15+
16+
<article id="main">
17+
<header class="container" style="padding-top: 6em;text-align:center;">
18+
19+
<div class="menu">
20+
<a href="/about.html" class="menu-item" ><span class="icon-svg icon-about"/></span>About ossia</a>
21+
<a href="/team.html" class="menu-item"><span class="icon-svg icon-forum"></span>Team</a>
22+
<a href="/roadmap.html" class="menu-item"><span class="icon-svg icon-feature"></span>Roadmap</a>
23+
<a href="/research.html" class="menu-item"><span class="icon-svg icon-documentation"></span>Research</a>
24+
</div>
25+
26+
<h2 class="page-title">{{page.title}}</h2>
27+
</header>
28+
29+
<section class="wrapper style4 container">
30+
{{ content }}
31+
</section>
32+
</article>
33+

_layouts/community-page.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: default
3+
---
4+
5+
<script>
6+
$(function(){
7+
$('.menu a').each(function(){
8+
if("{{page.title}}" === this.text){
9+
$(this).addClass('active');
10+
return false;
11+
}
12+
});
13+
});
14+
</script>
15+
16+
<article id="main" style="padding-bottom: 2em;">
17+
<header class="container" style="padding-top: 6em;text-align:center;">
18+
<div class="menu" style="width: 50%;">
19+
<a href="https://gitter.im/OSSIA/score" target="_blank" class="menu-item" ><span class="icon-svg icon-chat"/></span>Chat</a>
20+
<a href="/blog.html" class="menu-item"><span class="icon-svg icon-blog"></span>Blog</a>
21+
<a href="http://forum.ossia.io/" target="_blank" class="menu-item"><span class="icon-svg icon-forum"></span>Forum</a>
22+
<a href="/gallery.html" class="menu-item"><span class="icon-svg icon-gallery"></span>Gallery</a>
23+
</div>
24+
25+
<br/>
26+
27+
<h2 class="page-title">{{page.title}}</h2>
28+
</header>
29+
30+
<!-- Page content -->
31+
{{ content }}
32+
<!-- </section> -->
33+
</article>
34+

_layouts/default.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include header.html %}
9+
<div class="page-content">
10+
{{ content }}
11+
</div>
12+
{% include footer.html %}
13+
14+
</body>
15+
16+
</html>

_layouts/landing-page.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body class="index">
7+
8+
{% include header.html %}
9+
{% include banner.html %}
10+
11+
<div class="page-content">
12+
{{ content }}
13+
</div>
14+
15+
{% include footer.html %}
16+
17+
</body>
18+
19+
</html>

_layouts/learn-page.html

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: default
3+
---
4+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
5+
6+
<script>
7+
$(function(){
8+
$('.menu a').each(function(){
9+
if("{{page.title}}" === this.text){
10+
$(this).addClass('active');
11+
return false;
12+
}
13+
});
14+
});
15+
</script>
16+
17+
18+
<article id="main" style="padding-bottom: 2em;">
19+
<header class="container" style="padding-top: 6em;text-align:center;">
20+
<div class="menu" style="width: 70%;">
21+
<a href="/faq.html" class="menu-item" ><span class="icon-svg icon-chat"/></span>FAQ</a>
22+
<a href="https://www.youtube.com/playlist?list=PLIHLSiZpIa6aRQT5v6RInuyCR3qWmMEgV" target="_blank" class="menu-item"><span class="icon-svg icon-video"></span>Tutorials</a>
23+
<a href="https://ossia.github.io/score/" target="_blank" class="menu-item"><span class="icon-svg icon-documentation"></span>Docs</a>
24+
<a href="http://forum.ossia.io/" target="_blank" class="menu-item"><span class="icon-svg icon-forum"></span>Forum</a>
25+
</div>
26+
27+
<br/>
28+
29+
<h2 class="page-title">{{page.title}}</h2>
30+
</header>
31+
32+
<section class="wrapper style4 container">
33+
{{ content }}
34+
</section>
35+
</article>
36+

_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
5+
<article id="main">
6+
<header class="container" style="padding-top: 6em;text-align:center;">
7+
<h2 class="page-title">{{ page.title }}</h2>
8+
</header>
9+
10+
<section class="style4 wrapper container">
11+
{{ content }}
12+
</section>
13+
</article>
14+

_layouts/post.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: default
3+
---
4+
5+
<article id="main">
6+
<header class="special container">
7+
<h2 class="post-title">{{ page.title }}</h2>
8+
<p class="post-meta">{{ page.categories }} • {{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<section class="style4 wrapper container">
12+
{{ content }}
13+
</section>
14+
<section class="wrapper container nav">
15+
{% if page.previous %}
16+
<a href="{{ page.previous.url}}" class="post-nav" style="float: left; text-align: left; ">&larr; <strong>{{page.previous.title}}</strong></a>
17+
{% endif %}
18+
19+
<div style="position: absolute; left: 50%;">
20+
<a href="/blog/index.html" class="post-nav" style="position: relative; left: -50%;"><strong>Back to all posts</strong></a>
21+
</div>
22+
23+
{% if page.next %}
24+
<a href="{{ page.next.url }}" class="post-nav" style="float: right; text-align: right;"><strong>{{page.next.title}}</strong> &rarr;</a>
25+
{% endif %}
26+
</section>
27+
28+
</article>
29+

_layouts/score-page.html

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: default
3+
---
4+
5+
<script>
6+
$(function(){
7+
$('.menu a').each(function(){
8+
if("{{page.title}}" === this.text){
9+
$(this).addClass('active');
10+
return false;
11+
}
12+
});
13+
});
14+
</script>
15+
16+
<article id="main">
17+
<header class="container" style="padding-top: 6em;text-align:center;">
18+
19+
<div class="menu">
20+
<a href="/about-ossia-score.html" class="menu-item" ><span class="icon-svg icon-about"/></span>About</a>
21+
<a href="/download.html" class="menu-item" ><span class="icon-svg icon-download"/></span>Download</a>
22+
<a href="/features.html" class="menu-item"><span class="icon-svg icon-feature"></span>Features</a>
23+
<a href="https://ossia.github.io/score/" target="_blank" class="menu-item"><span class="icon-svg icon-documentation"></span>Docs</a>
24+
<a href="https://www.youtube.com/playlist?list=PLIHLSiZpIa6aRQT5v6RInuyCR3qWmMEgV" target="_blank" class="menu-item"><span class="icon-svg icon-video"></span>Tutorials</a>
25+
<a href="/contributor-guide.html" class="menu-item"><span class="icon-svg icon-contributing"></span>Contribute</a>
26+
</div>
27+
28+
<h2 class="page-title">{{ page.title }}</h2>
29+
</header>
30+
31+
<section class="wrapper style4 container">
32+
{{ content }}
33+
</section>
34+
</article>
35+

0 commit comments

Comments
 (0)