aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.html
blob: f280ebe9e07cb888e769631cb79ae44c4c4a36ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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">
                <div class="item">
                    <img class="icon" src="{{ icon }}" onload="SVGInject(this);">
                    <div class="name">
                        {{ name }}
                    </div>
                </div>
            </script>
        </div>
        <div class="log" id="log">

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