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

50 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2020-01-15 23:42:58 -06: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/chaos/c.css" %>
<style>
section.head{
display: block;
background-color: lightslategray;
color: white;
padding: 40px;
}
p.h1{
display: block;
margin: auto;
width: 100%;
text-align: center;
font-size: 5em;
}
p.h2{
display: block;
margin: auto;
width: 100%;
text-align: center;
font-size: 3em;
}
section.ibottom{
background-color: lightslategray !important;
}
</style>
<% map{%><%= stylesheet "$_"%><%}(@{stash('css')}) if defined(stash('css'));%>
</head>
<body>
<section class="head"><p class=h1>Beijing Wisdom</p><p class=h2>Healing Center</p></section>
<% map{%><%= include "$_"%><%}(@{stash('prepend')})
if defined(stash('prepend'));%>
<%= content %>
<% map{%><%= include "$_"%><%}(@{stash('apend')})
if defined(stash('apend'));%>
%= include 'home/htmlChaos'
<% map{%><%= javascript "$_"%><%}(@{stash('js')}) if defined(stash('js'));%>
</body>
</html>