1
0
Fork 0
mirror of synced 2024-07-13 10:15:49 +12:00
budibase/packages/server/utilities/builder/index.template.html

32 lines
640 B
HTML
Raw Normal View History

2019-09-07 00:04:23 +12: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 16:24:14 +12:00
{{ each(options.stylesheets) }}
2019-09-07 00:04:23 +12:00
<link rel='stylesheet' href='{{ @this }}'>
{{ /each }}
2019-09-12 17:10:50 +12:00
<script src='{{ appRootPath }}/clientAppDefinition.js'></script>
2019-09-07 00:04:23 +12:00
<script src='{{ appRootPath }}/budibase-client.js'></script>
2019-09-22 16:02:33 +12:00
<script>
loadBudibase();
</script>
2019-09-07 00:04:23 +12:00
</head>
<body id="app">
2019-09-12 17:10:50 +12:00
2019-09-07 00:04:23 +12:00
</body>
</html>