25 lines
844 B
Plaintext
25 lines
844 B
Plaintext
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title><%= title %></title>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<!-- <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" %>
|
||
|
|
<%foreach my $v ( @{ stash('css') } ) {%><%= stylesheet "$v";%><%}%>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
%= include 'home/htmlNav'
|
||
|
|
%= include 'home/htmlSide'
|
||
|
|
<%= content %>
|
||
|
|
%= include 'home/htmlChaos'
|
||
|
|
<%= javascript "/global/nav/d3Side.js"; %>
|
||
|
|
<%foreach my $v ( @{ stash('js') } ) {%><%= javascript "$v";%><%}%>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|