-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
116 lines (102 loc) · 4.1 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
$HOME = true;
include_once('inc_header.php')
?>
<!-- Banner -->
<section id="banner">
<h2>Cardinal</h2>
<p>Virtual modular synthesizer plugin</p>
<ul class="actions special">
<li><a href="https://github.com/DISTRHO/Cardinal/releases/latest" class="button primary">Download</a></li>
<li><a href="/live" class="button">Try Live</a></li>
</ul>
</section>
<!-- Main -->
<section id="main" class="container">
<section class="box special">
<header class="major">
<h2>A fully free and self-contained modular synthesizer
<br />
based on the popular <a href="https://vcvrack.com/" target="_blank">VCV Rack</a></h2>
<p>Available in AudioUnit/CLAP/LV2/VST2/VST3 plugin formats and as a standalone app for FreeBSD, Linux, macOS, Windows and the Web.</p>
</header>
</section>
<section class="box special features">
<div class="features-row">
<section>
<span class="icon major brands fa-osi accent3"></span>
<h3>Open-Source</h3>
<p>Created first and foremost as a way to have Rack as a conventional open-source audio plugin.</p>
</section>
<section>
<span class="icon major solid fa-box accent4"></span>
<h3>Self-contained</h3>
<p>Cardinal does not load any external modules, everything is built-in.</p>
</section>
</div>
<div class="features-row">
<section>
<span class="icon major accent1"><img src="https://lv2plug.in/images/logo.svg" alt="" style="width: 3.5em;height: 3.5em;vertical-align: middle;"></span>
<h3>LV2 support</h3>
<p>Supporting real CV ports to and from the plugin, for integration with other modular systems.</p>
</section>
<section>
<span class="icon major brands fa-ubuntu accent2"></span>
<h3>Multi-platform</h3>
<p>Supporting more than just the basic 3 desktop operating systems.</p>
</section>
</div>
</section>
<div class="row">
<div class="col-6 col-12-narrower">
<section class="box special">
<span class="image featured"><img src="images/pic01.jpg" alt="" /></span>
<h3>1247 included modules</h3>
<p>A total of 1247 modules from 80 different authors/brands.</p>
<ul class="actions special">
<li><a href="/modules" class="button alt">Learn more</a></li>
</ul>
</section>
</div>
<div class="col-6 col-12-narrower">
<section class="box special">
<span class="image featured"><img src="images/pic02.jpg" alt="" /></span>
<h3>3 Plugin variants</h3>
<p>A "main" variant plus Synth and FX.</p>
<ul class="actions special">
<li><a href="/variants" class="button alt">Learn more</a></li>
</ul>
</section>
</div>
</div>
</section>
<!-- CTA -->
<section id="cta">
<h2>Get involved</h2>
<p>
Development <a href="https://github.com/DISTRHO/Cardinal/" target="_blank">happens on GitHub</a> and we chat on the #cardinal IRC room in irc.libera.chat server.
<br />
Come join us in your favorite IRC client or through your web browser (no post history).
</p>
<form>
<div class="row gtr-50 gtr-uniform">
<div class="col-8 col-12-mobilep">
<input type="text" name="nickname" id="nickname" placeholder="Nickname" />
</div>
<div class="col-4 col-12-mobilep">
<a href="https://web.libera.chat/?nick=Guest?#cardinal" class="button fit" id="chat" target="_blank">Open chat</a>
</div>
<script>
var nickname = document.getElementById('nickname');
var chat_href = document.getElementById('chat');
if (nickname.value) {
chat_href.setAttribute('href', 'https://web.libera.chat/?nick=' + nickname.value + '?#cardinal');
}
nickname.onchange = function() {
chat_href.setAttribute('href', 'https://web.libera.chat/?nick=' + nickname.value + '?#cardinal');
};
</script>
</div>
</form>
</section>
<?php include_once('inc_footer.php') ?>