2018-07-20 05:16:47 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2018-08-15 02:47:30 -05:00
|
|
|
<meta charset="UTF-8">
|
2018-07-20 05:16:47 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2018-08-15 02:47:30 -05:00
|
|
|
<title><%= title %></title>
|
2018-07-20 05:16:47 -05:00
|
|
|
<!-- <script src="https://d3js.org/d3.v4.min.js" charset="utf-8"></script> -->
|
|
|
|
|
<%= javascript "/ext/d3.v4.min.js"; %>
|
|
|
|
|
<%= stylesheet "/global/layout.css" %>
|
|
|
|
|
<%= stylesheet "/global/nav/cssSide.css" %>
|
|
|
|
|
<%= stylesheet "/global/nav/cssNav.css" %>
|
|
|
|
|
<%= stylesheet "/global/chaos/c.css" %>
|
|
|
|
|
<%= stylesheet "/home/admin/cssAdmin.css" %>
|
|
|
|
|
<% map{%><%= stylesheet "$_"%><%}(@{stash('css')}) if defined(stash('css'));%>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
%= include 'home/htmlNav'
|
|
|
|
|
%= include 'home/htmlSide'
|
|
|
|
|
%= include 'home/htmlAdmin'
|
|
|
|
|
<% map{%><%= include "$_"%><%}(@{stash('prepend')})
|
|
|
|
|
if defined(stash('prepend'));%>
|
|
|
|
|
<%= content %>
|
|
|
|
|
<% map{%><%= include "$_"%><%}(@{stash('apend')})
|
|
|
|
|
if defined(stash('apend'));%>
|
|
|
|
|
%= include 'home/htmlChaos'
|
|
|
|
|
<%= javascript "/global/nav/d3Side.js"; %>
|
|
|
|
|
<% map{%><%= javascript "$_"%><%}(@{stash('js')}) if defined(stash('js'));%>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|