Files
dojo/templates/layouts/default.html.ep

29 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-07-13 19:06:08 -05:00
<!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" %>
2018-07-18 04:28:26 -05:00
<% map{%><%= stylesheet "$_"%><%}(@{stash('css')}) if defined(stash('css'));%>
2018-07-13 19:06:08 -05:00
</head>
<body>
%= include 'home/htmlNav'
%= include 'home/htmlSide'
2018-07-18 04:28:26 -05:00
<% map{%><%= include "$_"%><%}(@{stash('prepend')})
if defined(stash('prepend'));%>
2018-07-13 19:06:08 -05:00
<%= content %>
2018-07-18 04:28:26 -05:00
<% map{%><%= include "$_"%><%}(@{stash('apend')})
if defined(stash('apend'));%>
2018-07-13 19:06:08 -05:00
%= include 'home/htmlChaos'
<%= javascript "/global/nav/d3Side.js"; %>
2018-07-18 04:28:26 -05:00
<% map{%><%= javascript "$_"%><%}(@{stash('js')}) if defined(stash('js'));%>
2018-07-13 19:06:08 -05:00
</body>
</html>