41 lines
1013 B
HTML
41 lines
1013 B
HTML
<html>
|
|
<head>
|
|
<title>Lanceur - Papaye</title>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Application root element -->
|
|
<div id="papaye"></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">
|
|
Papaye.start('#papaye')
|
|
.then(function() {
|
|
console.info('Application started.');
|
|
})
|
|
.catch(function(err) {
|
|
console.error(err.stack ? err.stack : err);
|
|
})
|
|
;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|