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

22 lines
477 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 }}'>
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 }}
<script src='{{ appRootPath }}/budibase-client.js'></script>
</head>
<body id="app">
<script src='{{ appRootPath }}/clientAppDefinition.js'></script>
</body>
</html>