mirror of
https://github.com/espocrm/espocrm.git
synced 2026-03-03 02:17:01 +00:00
62 lines
2.4 KiB
HTML
62 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{applicationName}}</title>
|
|
<script type="application/json" data-name="loader-params">{{loaderParams}}</script>{{scriptsHtml}}
|
|
<link rel="stylesheet" href="{{basePath}}{{stylesheet}}?r={{cacheTimestamp}}" id='main-stylesheet'>{{additionalStyleSheetsHtml}}{{linksHtml}}
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="description" content="{{applicationDescription}}">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<link rel="alternate icon" href="{{basePath}}{{faviconAlternate}}" type="image/x-icon">
|
|
<link rel="icon" href="{{basePath}}{{favicon}}" type="{{faviconType}}">
|
|
<script nonce="{{nonce}}">
|
|
let loadedApp;
|
|
|
|
const run = app => {
|
|
{{runScript}}
|
|
};
|
|
|
|
const init = () => {
|
|
require('{{appClientClassName}}', App => {
|
|
new App({
|
|
id: '{{applicationId}}',
|
|
useCache: {{useCache}},
|
|
cacheTimestamp: {{cacheTimestamp}},
|
|
appTimestamp: {{appTimestamp}},
|
|
basePath: '{{basePath}}',
|
|
apiUrl: '{{apiUrl}}',
|
|
ajaxTimeout: {{ajaxTimeout}},
|
|
internalModuleList: {{internalModuleList}},
|
|
bundledModuleList: {{bundledModuleList}},
|
|
theme: {{theme}},
|
|
}, app => {
|
|
loadedApp = app;
|
|
|
|
run(app);
|
|
});
|
|
});
|
|
};
|
|
|
|
window.addEventListener('pageshow', event => {
|
|
if (event.persisted && loadedApp) {
|
|
run(loadedApp);
|
|
|
|
return;
|
|
}
|
|
|
|
init();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body data-id="{{applicationId}}">
|
|
<div class="container content"></div>
|
|
<footer>
|
|
<p class="credit small">© 2026
|
|
<a href="https://www.espocrm.com" title="Powered by EspoCRM" rel="noopener" target="_blank">EspoCRM, Inc.</a></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|