1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00
documize/gui/app/index.html
sauls8t 4d2f30711c Accept activation key during setup process
Enterprise edition only.
2019-06-19 12:46:05 +01:00

40 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
{{content-for 'head'}}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Documize</title>
<meta property="dbname" content="{{.DBname}}" />
<meta property="dbhash" content="{{.DBhash}}" />
<meta property="edition" content="{{.Edition}}" />
<meta name="author" content="Documize" />
<meta name="description" content="Documize">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="/favicon.ico?v=2" />
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=2" sizes="32x32" />
<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link rel="stylesheet" href="{{rootURL}}assets/documize.css">
<script type="text/javascript">
window.assetMapping = {
app: '{{rootURL}}assets/documize.js',
vendor: '{{rootURL}}assets/vendor.js',
themedefault: '{{rootURL}}assets/documize.css',
themeconference: '{{rootURL}}assets/theme-conference.css',
themeforest: '{{rootURL}}assets/theme-forest.css',
themebrave: '{{rootURL}}assets/theme-brave.css',
themeharvest: '{{rootURL}}assets/theme-harvest.css',
themesunflower: '{{rootURL}}assets/theme-sunflower.css',
themesilver: '{{rootURL}}assets/theme-silver.css',
};
</script>
{{content-for 'head-footer'}}
</head>
<body>
{{content-for 'body'}}
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/documize.js"></script>
{{content-for 'body-footer'}}
</body>
</html>