35 lines
843 B
HTML
35 lines
843 B
HTML
<html>
|
|
<head>
|
|
<title>Kaki Launcher</title>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="kaki"></div>
|
|
|
|
<script id="items-list-tpl" type="text/x-template">
|
|
<ul class="apps-list">
|
|
{{#each items}}
|
|
<li data-exec="{{exec}}" class="app-item">
|
|
<img class="app-icon" src="{{icon}}" />
|
|
<span class="app-label">{{label}}</span>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</script>
|
|
|
|
<script type="text/javascript" src="js/app.js"></script>
|
|
<script type="text/javascript">
|
|
// Start the app
|
|
Kaki.start('#kaki')
|
|
.then(function() {
|
|
console.info('Application started.');
|
|
})
|
|
.catch(function(err) {
|
|
console.error(err.stack ? err.stack : err);
|
|
})
|
|
;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|