Initial commit

This commit is contained in:
2015-08-20 18:41:51 +02:00
parent a7d8d9e4d3
commit 908b12ef20
11 changed files with 1156 additions and 0 deletions

34
index.html Normal file
View File

@ -0,0 +1,34 @@
<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>