budibase/packages/server/utilities/builder/index.template.html

32 lines
640 B
HTML
Raw Normal View History

2019-09-06 14:04:23 +02:00
<!doctype html>
<html>
<head>
<meta charset='utf8'>
<meta name='viewport' content='width=device-width'>
<title>{{ title }}</title>
<link rel='icon' type='image/png' href='{{ favicon }}'>
<style>
html, body {
height: 100%;
width: 100%;
}
</style>
2019-09-09 06:24:14 +02:00
{{ each(options.stylesheets) }}
2019-09-06 14:04:23 +02:00
<link rel='stylesheet' href='{{ @this }}'>
{{ /each }}
2019-09-12 07:10:50 +02:00
<script src='{{ appRootPath }}/clientAppDefinition.js'></script>
2019-09-06 14:04:23 +02:00
<script src='{{ appRootPath }}/budibase-client.js'></script>
2019-09-22 06:02:33 +02:00
<script>
loadBudibase();
</script>
2019-09-06 14:04:23 +02:00
</head>
<body id="app">
2019-09-12 07:10:50 +02:00
2019-09-06 14:04:23 +02:00
</body>
</html>