<!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>