aboutsummaryrefslogtreecommitdiff
path: root/client/js/app.js
blob: 4f69265d94155ff507538ffa8a114b5f8064091d (plain)
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
/* Arching Kaos Radio Station with Generator
 *
 * Kaotisk Hund - 2024
 *
 * @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
 *
 */
var root = {
    head: document.querySelector('head'),
    body: document.querySelector('body'),
    html: document.querySelector('html')
};

var html = [
    {
        element:"head",
        innerHTML:[
            {
                element:"title",
                innerText:"Arching Kaos Radio"
            },
            {
                element:"meta",
                name:"viewport",
                content:"width=device-width, initial-scale=1"
            },
            {
                element:"link",
                rel:"stylesheet",
                type:"text/css",
                href:"./css/styles.css"
            }
        ]
    },
];

makeUpSite(html, root.html);

var scripts = [
    {
        element:"script",
        src:"./js/ui/layout.js"
    }
];

for ( var i = 0; i < scripts.length; i++ )
{
    makeElement(scripts[i], root.body);
}

// @license-end