Initial commit
This commit is contained in:
34
index.html
Normal file
34
index.html
Normal 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>
|
Reference in New Issue
Block a user