@cuba-platform/front-generator
Version:
CUBA Platform front-end clients generator
87 lines (69 loc) • 2.9 kB
HTML
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title><%= title %></title>
<!--
The `<base>` tag below is being changed in a build time.
See the `basePath` property in `polymer.json`.
-->
<base href="/">
<link rel="icon" href="images/favicon.ico">
<link rel="icon" href="images/app-icon/icon-32x32.png" sizes="32x32">
<link rel="icon" href="images/app-icon/icon-64x64.png" sizes="64x64">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="<%= baseColor %>">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="<%= project.name %>">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="images/app-icon/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/app-icon/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/app-icon/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/app-icon/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/app-icon/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/app-icon/icon-144x144.png">
<meta name="msapplication-TileColor" content="<%= baseColor %>">
<meta name="msapplication-tap-highlight" content="no">
<script>
// Setup Polymer options
window.Polymer = {
dom: 'shadow',
lazyRegister: true
};
(function() {
'use strict';
if (!window.fetch) {
var fetchScript = document.createElement('script');
fetchScript.src = 'bower_components/fetch/fetch.js';
document.head.appendChild(fetchScript);
}
})();
// Uncomment if you want to load service worker
//
// if ('serviceWorker' in navigator) {
// window.addEventListener('load', function() {
// navigator.serviceWorker.register('service-worker.js');
// });
// }
</script>
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
<script src="bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<link rel="import" href="src/<%= project.namespace %>-shell.html">
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
}
</style>
</head>
<body>
<<%= project.namespace %>-shell api-url="/<%= project.modulePrefix %>/rest/"></<%= project.namespace %>-shell>
</body>
</html>