Browse Source

Back all templates to assets

Vova Tkach 6 years ago
parent
commit
3f7c2be268

File diff suppressed because it is too large
+ 2 - 0
assets/tmpl.cp.base.go


+ 119 - 0
assets/tmpl.cp.base.html

@@ -0,0 +1,119 @@
+<!doctype html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8">
+		<meta name="theme-color" content="#205081" />
+		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+		<title>{{$.Data.Title}}</title>
+		<link rel="stylesheet" href="{{$.System.PathCssBootstrap}}">
+		<link rel="stylesheet" href="{{$.System.PathCssStyles}}" />
+		<link rel="stylesheet" href="{{$.System.PathCssCpStyles}}">
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+	</head>
+	<body class="{{$.Data.BodyClasses}}">
+		<div class="modal fade" id="sys-modal-user-settings" tabindex="-1" role="dialog" aria-labelledby="sysModalUserSettingsLabel" aria-hidden="true">
+			<div class="modal-dialog modal-dialog-centered" role="document">
+				<div class="modal-content">
+					<form class="form-user-settings" action="/cp/" method="post" autocomplete="off">
+						<input type="hidden" name="action" value="usersettings">
+						<div class="modal-header">
+							<h5 class="modal-title" id="sysModalUserSettingsLabel">User settings</h5>
+							<button type="button" class="close" data-dismiss="modal" aria-label="Close">
+								<span aria-hidden="true">&times;</span>
+							</button>
+						</div>
+						<div class="modal-body text-left">
+							<div class="form-group">
+								<label for="first_name">User first name</label>
+								<input type="text" class="form-control" id="first_name" name="first_name" value="{{$.Data.UserFirstName}}" placeholder="User first name" autocomplete="off">
+							</div>
+							<div class="form-group">
+								<label for="last_name">User last name</label>
+								<input type="text" class="form-control" id="last_name" name="last_name" value="{{$.Data.UserLastName}}" placeholder="User last name" autocomplete="off">
+							</div>
+							<div class="form-group">
+								<label for="email">User email</label>
+								<input type="email" class="form-control" id="email" name="email" value="{{$.Data.UserEmail}}" placeholder="User email" autocomplete="off" required>
+							</div>
+							<div class="form-group">
+								<label for="password">User new password</label>
+								<input type="password" class="form-control" id="password" aria-describedby="passwordHelp" name="password" value="{{$.Data.UserPassword}}" placeholder="User new password" autocomplete="off">
+								<small id="passwordHelp" class="form-text text-muted">Leave this field empty if you don't want change your password</small>
+							</div>
+							<div class="sys-messages"></div>
+						</div>
+						<div class="modal-footer">
+							<button type="submit" class="btn btn-primary">Save changes</button>
+							<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
+						</div>
+					</form>
+				</div>
+			</div>
+		</div>
+		<nav class="navbar main navbar-expand-md navbar-dark fixed-top bg-dark">
+			<a class="navbar-brand" href="/cp/">{{$.Data.Title}}</a>
+			<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
+				<span class="navbar-toggler-icon"></span>
+			</button>
+			<div class="collapse navbar-collapse" id="navbarCollapse">
+				<ul class="navbar-nav mr-auto">
+					<li class="nav-item dropdown">
+						<a class="nav-link dropdown-toggle" href="javascript:;" id="nbModulesDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+							Modules
+						</a>
+						<div class="dropdown-menu" aria-labelledby="nbModulesDropdown">
+							{{$.Data.NavBarModules}}
+						</div>
+					</li>
+					<li class="nav-item dropdown">
+						<a class="nav-link dropdown-toggle" href="javascript:;" id="nbSystemDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+							System
+						</a>
+						<div class="dropdown-menu" aria-labelledby="nbSystemDropdown">
+							{{$.Data.NavBarModulesSys}}
+						</div>
+					</li>
+				</ul>
+				<ul class="navbar-nav ml-auto">
+					<li class="nav-item dropdown">
+						<a class="nav-link dropdown-toggle" href="javascript:;" id="nbAccountDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+							<img class="rounded-circle" src="{{$.Data.UserAvatarLink}}">{{$.Data.UserEmail}}
+						</a>
+						<div class="dropdown-menu dropdown-menu-right" aria-labelledby="nbAccountDropdown">
+							<a class="dropdown-item" href="javascript:;" data-toggle="modal" data-target="#sys-modal-user-settings" data-backdrop="static" data-keyboard="false">Settings</a>
+							<div class="dropdown-divider"></div>
+							<a class="dropdown-item" href="javascript:ActionSingOut();">Sing out</a>
+						</div>
+					</li>
+				</ul>
+			</div>
+		</nav>
+		<div class="wrap">
+			<div class="sidebar sidebar-left">
+				<div class="scroll">
+					<div class="padd">
+						{{$.Data.SidebarLeft}}
+					</div>
+				</div>
+			</div>
+			<div class="content">
+				<div class="scroll">
+					<div class="padd">
+						{{$.Data.Content}}
+					</div>
+				</div>
+			</div>
+			<div class="sidebar sidebar-right">
+				<div class="scroll">
+					<div class="padd">
+						{{$.Data.SidebarRight}}
+					</div>
+				</div>
+			</div>
+		</div>
+		<script src="{{$.System.PathJsJquery}}"></script>
+		<script src="{{$.System.PathJsPopper}}"></script>
+		<script src="{{$.System.PathJsBootstrap}}"></script>
+		<script src="{{$.System.PathJsCpScripts}}"></script>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.cp.first.user.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplCpFirstUser = []byte(`<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="theme-color" content="#205081" /><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><title>Creating first user</title><link rel="stylesheet" href="{{$.System.PathCssBootstrap}}"><link rel="stylesheet" href="{{$.System.PathCssCpStyles}}"><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><style type="text/css">html{height:100%;}</style></head><body class="cp-first-user text-center"><form class="form-signin card" action="/cp/" method="post"><input type="hidden" name="action" value="first_user"><h1 class="h3 mb-3 font-weight-normal">Creating first user</h1><label for="first_name" class="sr-only">User first name</label><input type="text" id="first_name" name="first_name" class="form-control mb-3" placeholder="User first name"><label for="last_name" class="sr-only">User last name</label><input type="text" id="last_name" name="last_name" class="form-control mb-3" placeholder="User last name"><label for="email" class="sr-only">User email</label><input type="email" id="email" name="email" class="form-control mb-3" placeholder="User email" required><label for="password" class="sr-only">User password</label><input type="password" id="password" name="password" class="form-control mb-3" placeholder="User password" required><div class="sys-messages"></div><button class="btn btn-lg btn-primary btn-block" type="submit">Create</button></form><script src="{{$.System.PathJsJquery}}"></script><script src="{{$.System.PathJsPopper}}"></script><script src="{{$.System.PathJsBootstrap}}"></script><script src="{{$.System.PathJsCpScripts}}"></script></body></html>`)

+ 33 - 0
assets/tmpl.cp.first.user.html

@@ -0,0 +1,33 @@
+<!doctype html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8">
+		<meta name="theme-color" content="#205081" />
+		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+		<title>Creating first user</title>
+		<link rel="stylesheet" href="{{$.System.PathCssBootstrap}}">
+		<link rel="stylesheet" href="{{$.System.PathCssCpStyles}}">
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<style type="text/css">html{height:100%;}</style>
+	</head>
+	<body class="cp-first-user text-center">
+		<form class="form-signin card" action="/cp/" method="post">
+			<input type="hidden" name="action" value="first_user">
+			<h1 class="h3 mb-3 font-weight-normal">Creating first user</h1>
+			<label for="first_name" class="sr-only">User first name</label>
+			<input type="text" id="first_name" name="first_name" class="form-control mb-3" placeholder="User first name">
+			<label for="last_name" class="sr-only">User last name</label>
+			<input type="text" id="last_name" name="last_name" class="form-control mb-3" placeholder="User last name">
+			<label for="email" class="sr-only">User email</label>
+			<input type="email" id="email" name="email" class="form-control mb-3" placeholder="User email" required>
+			<label for="password" class="sr-only">User password</label>
+			<input type="password" id="password" name="password" class="form-control mb-3" placeholder="User password" required>
+			<div class="sys-messages"></div>
+			<button class="btn btn-lg btn-primary btn-block" type="submit">Create</button>
+		</form>
+		<script src="{{$.System.PathJsJquery}}"></script>
+		<script src="{{$.System.PathJsPopper}}"></script>
+		<script src="{{$.System.PathJsBootstrap}}"></script>
+		<script src="{{$.System.PathJsCpScripts}}"></script>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.cp.login.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplCpLogin = []byte(`<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="theme-color" content="#205081" /><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><title>Please login</title><link rel="stylesheet" href="{{$.System.PathCssBootstrap}}"><link rel="stylesheet" href="{{$.System.PathCssCpStyles}}"><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><style type="text/css">html{height:100%;}</style></head><body class="cp-login text-center"><form class="form-signin card" action="/cp/" method="post"><input type="hidden" name="action" value="signin"><h1 class="h3 mb-3 font-weight-normal">Please login</h1><label for="email" class="sr-only">User email</label><input type="email" id="email" name="email" class="form-control" placeholder="User email" required autofocus><label for="password" class="sr-only">User password</label><input type="password" id="password" name="password" class="form-control mb-3" placeholder="User password" required><div class="sys-messages"></div><button class="btn btn-lg btn-primary btn-block" type="submit">Login</button></form><script src="{{$.System.PathJsJquery}}"></script><script src="{{$.System.PathJsPopper}}"></script><script src="{{$.System.PathJsBootstrap}}"></script><script src="{{$.System.PathJsCpScripts}}"></script></body></html>`)

+ 29 - 0
assets/tmpl.cp.login.html

@@ -0,0 +1,29 @@
+<!doctype html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8">
+		<meta name="theme-color" content="#205081" />
+		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+		<title>Please login</title>
+		<link rel="stylesheet" href="{{$.System.PathCssBootstrap}}">
+		<link rel="stylesheet" href="{{$.System.PathCssCpStyles}}">
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<style type="text/css">html{height:100%;}</style>
+	</head>
+	<body class="cp-login text-center">
+		<form class="form-signin card" action="/cp/" method="post">
+			<input type="hidden" name="action" value="signin">
+			<h1 class="h3 mb-3 font-weight-normal">Please login</h1>
+			<label for="email" class="sr-only">User email</label>
+			<input type="email" id="email" name="email" class="form-control" placeholder="User email" required autofocus>
+			<label for="password" class="sr-only">User password</label>
+			<input type="password" id="password" name="password" class="form-control mb-3" placeholder="User password" required>
+			<div class="sys-messages"></div>
+			<button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
+		</form>
+		<script src="{{$.System.PathJsJquery}}"></script>
+		<script src="{{$.System.PathJsPopper}}"></script>
+		<script src="{{$.System.PathJsBootstrap}}"></script>
+		<script src="{{$.System.PathJsCpScripts}}"></script>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.cp.mysql.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplCpMySql = []byte(`<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="theme-color" content="#205081" /><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><title>Configure MySQL</title><link rel="stylesheet" href="{{$.System.PathCssBootstrap}}"><link rel="stylesheet" href="{{$.System.PathCssCpStyles}}"><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><style type="text/css">html{height:100%;}</style></head><body class="cp-mysql text-center"><form class="form-signin card" action="/cp/" method="post"><input type="hidden" name="action" value="mysql"><h1 class="h3 mb-3 font-weight-normal">Configure MySQL</h1><label for="host" class="sr-only">Database host</label><input type="text" id="host" name="host" class="form-control mb-3" placeholder="Database host" value="localhost" required><label for="port" class="sr-only">Database host port</label><input type="text" id="port" name="port" class="form-control mb-3" placeholder="Database host port" value="3306" required><label for="name" class="sr-only">Database name</label><input type="text" id="name" name="name" class="form-control mb-3" placeholder="Database name" required autofocus><label for="user" class="sr-only">Database user name</label><input type="text" id="user" name="user" class="form-control mb-3" placeholder="Database user name" required><label for="password" class="sr-only">Database user password</label><input type="password" id="password" name="password" class="form-control mb-3" placeholder="Database user password"><div class="sys-messages"></div><button class="btn btn-lg btn-primary btn-block" type="submit">Configure</button></form><script src="{{$.System.PathJsJquery}}"></script><script src="{{$.System.PathJsPopper}}"></script><script src="{{$.System.PathJsBootstrap}}"></script><script src="{{$.System.PathJsCpScripts}}"></script></body></html>`)

+ 35 - 0
assets/tmpl.cp.mysql.html

@@ -0,0 +1,35 @@
+<!doctype html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8">
+		<meta name="theme-color" content="#205081" />
+		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+		<title>Configure MySQL</title>
+		<link rel="stylesheet" href="{{$.System.PathCssBootstrap}}">
+		<link rel="stylesheet" href="{{$.System.PathCssCpStyles}}">
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<style type="text/css">html{height:100%;}</style>
+	</head>
+	<body class="cp-mysql text-center">
+		<form class="form-signin card" action="/cp/" method="post">
+			<input type="hidden" name="action" value="mysql">
+			<h1 class="h3 mb-3 font-weight-normal">Configure MySQL</h1>
+			<label for="host" class="sr-only">Database host</label>
+			<input type="text" id="host" name="host" class="form-control mb-3" placeholder="Database host" value="localhost" required>
+			<label for="port" class="sr-only">Database host port</label>
+			<input type="text" id="port" name="port" class="form-control mb-3" placeholder="Database host port" value="3306" required>
+			<label for="name" class="sr-only">Database name</label>
+			<input type="text" id="name" name="name" class="form-control mb-3" placeholder="Database name" required autofocus>
+			<label for="user" class="sr-only">Database user name</label>
+			<input type="text" id="user" name="user" class="form-control mb-3" placeholder="Database user name" required>
+			<label for="password" class="sr-only">Database user password</label>
+			<input type="password" id="password" name="password" class="form-control mb-3" placeholder="Database user password">
+			<div class="sys-messages"></div>
+			<button class="btn btn-lg btn-primary btn-block" type="submit">Configure</button>
+		</form>
+		<script src="{{$.System.PathJsJquery}}"></script>
+		<script src="{{$.System.PathJsPopper}}"></script>
+		<script src="{{$.System.PathJsBootstrap}}"></script>
+		<script src="{{$.System.PathJsCpScripts}}"></script>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.page.default.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplPageDefault = []byte(`<!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta name="theme-color" content="#205081" /><title>Default Page</title><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" /><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" /></head><body><div class="wrapper"><div class="logo"><div class="svg"><img src="{{$.System.PathSvgLogo}}" width="150" height="150" /></div></div><h1>Default Page</h1><h2><script>document.write(document.location.host);</script><noscript>fave.pro</noscript></h2></div></body></html>`)

+ 23 - 0
assets/tmpl.page.default.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8" />
+		<meta name="theme-color" content="#205081" />
+		<title>Default Page</title>
+		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+		<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" />
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" />
+	</head>
+	<body>
+		<div class="wrapper">
+			<div class="logo">
+				<div class="svg">
+					<img src="{{$.System.PathSvgLogo}}" width="150" height="150" />
+				</div>
+			</div>
+			<h1>Default Page</h1>
+			<h2><script>document.write(document.location.host);</script><noscript>fave.pro</noscript></h2>
+		</div>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.page.error.404.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplPageError404 = []byte(`<!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta name="theme-color" content="#205081" /><title>404 Not Found</title><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" /><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" /></head><body><div class="wrapper"><div class="logo"><div class="svg"><img src="{{$.System.PathSvgLogo}}" width="150" height="150" /></div></div><h1>404 Not Found</h1><h2><script>document.write(document.location.host);</script><noscript>fave.pro</noscript></h2></div></body></html>`)

+ 23 - 0
assets/tmpl.page.error.404.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8" />
+		<meta name="theme-color" content="#205081" />
+		<title>404 Not Found</title>
+		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+		<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" />
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" />
+	</head>
+	<body>
+		<div class="wrapper">
+			<div class="logo">
+				<div class="svg">
+					<img src="{{$.System.PathSvgLogo}}" width="150" height="150" />
+				</div>
+			</div>
+			<h1>404 Not Found</h1>
+			<h2><script>document.write(document.location.host);</script><noscript>fave.pro</noscript></h2>
+		</div>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.page.error.engine.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplPageErrorEngine = []byte(`<!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta name="theme-color" content="#205081" /><title>Engine Error</title><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" /><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" /></head><body><div class="wrapper"><div class="logo"><div class="svg"><img src="{{$.System.PathSvgLogo}}" width="150" height="150" /></div></div><h1>Engine Error</h1><h2>{{$.Data.ErrorMessage}}</h2></div></body></html>`)

+ 23 - 0
assets/tmpl.page.error.engine.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8" />
+		<meta name="theme-color" content="#205081" />
+		<title>Engine Error</title>
+		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+		<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" />
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" />
+	</head>
+	<body>
+		<div class="wrapper">
+			<div class="logo">
+				<div class="svg">
+					<img src="{{$.System.PathSvgLogo}}" width="150" height="150" />
+				</div>
+			</div>
+			<h1>Engine Error</h1>
+			<h2>{{$.Data.ErrorMessage}}</h2>
+		</div>
+	</body>
+</html>

+ 3 - 0
assets/tmpl.page.error.tmpl.go

@@ -0,0 +1,3 @@
+package assets
+
+var TmplPageErrorTmpl = []byte(`<!DOCTYPE html><html lang="en"><head><meta charset="utf-8" /><meta name="theme-color" content="#205081" /><title>Template Error</title><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" /><link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" /><link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" /></head><body><div class="wrapper"><div class="logo"><div class="svg"><img src="{{$.System.PathSvgLogo}}" width="150" height="150" /></div></div><h1>Template Error</h1><h2>{{$.Data.ErrorMessage}}</h2></div></body></html>`)

+ 23 - 0
assets/tmpl.page.error.tmpl.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<meta charset="utf-8" />
+		<meta name="theme-color" content="#205081" />
+		<title>Template Error</title>
+		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+		<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=0.8" />
+		<link rel="shortcut icon" href="{{$.System.PathIcoFav}}" type="image/x-icon" />
+		<link rel="stylesheet" type="text/css" media="all" href="{{$.System.PathCssStyles}}" />
+	</head>
+	<body>
+		<div class="wrapper">
+			<div class="logo">
+				<div class="svg">
+					<img src="{{$.System.PathSvgLogo}}" width="150" height="150" />
+				</div>
+			</div>
+			<h1>Template Error</h1>
+			<h2>{{$.Data.ErrorMessage}}</h2>
+		</div>
+	</body>
+</html>

Some files were not shown because too many files changed in this diff