ui/app/index.html

23 lines
804 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{content-for 'appName'}}</title>
<!-- {{content-for 'version'}} -->
<meta name="description" content="">
<meta name="viewport" content="width=694">
{{content-for 'head'}}
<link rel="stylesheet" href="{{content-for 'baseAssets'}}assets/vendor.css">
<link rel="stylesheet" href="{{content-for 'baseAssets'}}assets/ui.css">
<style type="text/css" title="dynamic-css"></style>
{{content-for 'head-footer'}}
</head>
<body>
{{content-for 'body'}}
<script src="{{content-for 'baseAssets'}}assets/vendor.js"></script>
<script src="{{content-for 'baseAssets'}}assets/ui.js"></script>
{{content-for 'body-footer'}}
</body>
</html>