aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.html
blob: 0dba1ce120d34c793df14200bffcdd245167f6de (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
<!doctype html>
<html lang="en">
    <head>
        <!-- Required meta tags -->
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    </head>
    <body>
        <div id="AppContainer" class="parent">
            <script id="item-template" type="x-tmpl-mustache">
                <a href="#" class="item" id="app-{{id}}" app-id="{{ id }}" onclick="window.launch(this);" style="display:none">
                    <img id="icon-inactive-{{id}}" class="icon inactive" src="/images/icons/blank_inactive.svg">
                    <img id="icon-enabled-{{id}}" class="icon enabled" src="/images/icons/blank_active.svg">
                    <div class="name">
                        {{ name }}
                    </div>
                </a>
            </script>
        </div>
        <div class="log" id="log">

        </div>
    </body>
</html>