2016-07-07 18:54:16 -07:00
|
|
|
<!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}}" />
|
2019-06-19 12:46:05 +01:00
|
|
|
<meta property="edition" content="{{.Edition}}" />
|
2016-07-07 18:54:16 -07:00
|
|
|
<meta name="author" content="Documize" />
|
2021-11-03 11:46:20 -04:00
|
|
|
<meta name="description" content="Documize Community">
|
2016-07-07 18:54:16 -07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
2017-08-08 11:24:21 +01:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
2018-06-07 14:24:08 +01:00
|
|
|
<link rel="shortcut icon" href="/favicon.ico?v=2" />
|
|
|
|
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=2" sizes="32x32" />
|
2019-01-07 14:43:56 +00:00
|
|
|
<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
|
|
|
|
<link rel="stylesheet" href="{{rootURL}}assets/documize.css">
|
2019-01-07 19:26:08 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
window.assetMapping = {
|
|
|
|
app: '{{rootURL}}assets/documize.js',
|
|
|
|
vendor: '{{rootURL}}assets/vendor.js',
|
2019-03-18 18:02:47 +00:00
|
|
|
themedefault: '{{rootURL}}assets/documize.css',
|
2019-01-07 19:26:08 +00:00
|
|
|
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>
|
2016-10-04 15:24:21 -07:00
|
|
|
{{content-for 'head-footer'}}
|
2016-07-07 18:54:16 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{content-for 'body'}}
|
2019-01-07 14:43:56 +00:00
|
|
|
<script src="{{rootURL}}assets/vendor.js"></script>
|
|
|
|
<script src="{{rootURL}}assets/documize.js"></script>
|
2016-07-07 18:54:16 -07:00
|
|
|
{{content-for 'body-footer'}}
|
|
|
|
</body>
|
|
|
|
</html>
|