-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
83 lines (75 loc) · 2.4 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
<?php
$PAGE_TITLE = "KXStudio";
$PAGE_TYPE = "HOME";
$PAGE_SOURCE_1 = ARRAY();
$PAGE_SOURCE_2 = ARRAY();
include_once("includes/header.php");
?>
<p>
KXStudio is a collection of applications and plugins for audio production.<br/>
KXStudio also provides Debian (and Ubuntu) compatible repositories.
</p>
<p>
The KXStudio project is divided into 3 main sections:
</p>
<div class="responsive-item thumb-128">
<div>
<p>
<a href="<?php echo $ROOT; ?>/Applications">
<img src="images/cadence.png" alt="cadence.png" class="img_thumb_128"/>
</a>
</p>
</div>
<div>
<p>
<b><a href="<?php echo $ROOT; ?>/Applications">Applications</a></b><br/>
We offer our own custom set of applications and utilities for Linux and Windows.<br/>
This includes a fully-featured audio plugin host, a JACK patchbay and more.<br/>
<br/>
</p>
</div>
</div>
<div class="responsive-item thumb-128">
<div>
<p>
<a href="<?php echo $ROOT; ?>/Plugins">
<img src="images/distrho.png" alt="distrho.png" class="img_thumb_128"/>
</a>
</p>
</div>
<div>
<p>
<b><a href="<?php echo $ROOT; ?>/Plugins">Plugins</a></b><br/>
We provide a wide range of open-source audio plugins and Linux ports.<br/>
We also provide custom patched plugins to work better and/or support more features.<br/>
</p>
</div>
</div>
<div class="responsive-item thumb-128 last">
<div>
<p>
<a href="<?php echo $ROOT; ?>/Repositories">
<img src="images/repos.png" alt="repos.png" class="img_thumb_128"/>
</a>
</p>
</div>
<div>
<p>
<b><a href="<?php echo $ROOT; ?>/Repositories">Repositories</a></b><br/>
Debian and Ubuntu compatible repositories are available.<br/>
Use them to get extra applications and updates, or to upgrade to the KXStudio distribution.<br/>
<br/>
</p>
</div>
</div>
<hr/>
<div align="center" class="div_donate">
<p>
If you want to help development, a donation, even small, is very welcome.<br/>
Check the <a href="<?php echo $ROOT; ?>/Donations">Donations</a> section to know how you can make one.
</p>
</div>
<br/>
<?php
include_once("includes/footer.php");
?>