24 lines
845 B
Plaintext
24 lines
845 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" ng-app="xdsUI">
|
|
<head>
|
|
<title><%= pageTitle %></title>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="keywords" content="<%= pageKeywords %>">
|
|
<% if (pageCssFiles.length) { %><% pageCssFiles.forEach(function (cssFile) { %><link rel="stylesheet" href="<%= cssFile %>"><% }) %><% } %>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<div ng-include="'/ui/thtml/layout/header'"></div>
|
|
<div id="page-wrapper">
|
|
<div id="container-fluid">
|
|
<div ng-view></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div ng-include="'/ui/thtml/layout/footer'"></div>
|
|
<% if (pageJsFiles.length) { %><% pageJsFiles.forEach(function (jsFile) { %><script src="<%= jsFile %>"></script><% }) %><% } %>
|
|
</body>
|
|
</html>
|