41 lines
1013 B
HTML
41 lines
1013 B
HTML
<html>
|
|
<head>
|
|
<title>Lanceur - Pitaya</title>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Application root element -->
|
|
<div id="pitaya"></div>
|
|
|
|
<!-- Templates -->
|
|
<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>
|
|
|
|
<!-- Scripts -->
|
|
<script type="text/javascript" src="js/dom.js"></script>
|
|
<script type="text/javascript" src="js/app.js"></script>
|
|
|
|
<!-- Application bootstrapping -->
|
|
<script type="text/javascript">
|
|
Pitaya.start('#pitaya')
|
|
.then(function() {
|
|
console.info('Application started.');
|
|
})
|
|
.catch(function(err) {
|
|
console.error(err.stack ? err.stack : err);
|
|
})
|
|
;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|