mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{content-for 'head'}}
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta http-equiv=content-security-policy content="default-src *; img-src * 'self' data: https:; script-src 'self' 'unsafe-inline' 'unsafe-eval' *; style-src 'self' 'unsafe-inline' *;">
|
|
<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 Community">
|
|
<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>
|