39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Clockical</title>
|
|
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" href="css/app.css">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Use this installation button to install locally without going
|
|
through the marketpace (see app.js) -->
|
|
<button id="install-btn">Install</button>
|
|
|
|
|
|
<!-- Write your application here -->
|
|
<object
|
|
id="clockical"
|
|
data="img/themes/default.svg"
|
|
width="100"
|
|
style="position:absolute;top:0px;left:0px;"
|
|
type="image/svg+xml"
|
|
>
|
|
<p>SVG not supported.</p>
|
|
</object>
|
|
|
|
<!-- Using require.js, a module system for javascript, include the
|
|
js files. This loads "main.js", which in turn can load other
|
|
files, all handled by require.js:
|
|
http://requirejs.org/docs/api.html#jsfiles -->
|
|
<script type="text/javascript"
|
|
data-main="js/init.js"
|
|
src="js/lib/require.js"></script>
|
|
</body>
|
|
</html>
|