uweb/index.html

18 lines
648 B
HTML
Raw Normal View History

2018-12-09 14:14:35 +00:00
<%- partial('_partial/head') %>
2018-12-09 08:01:30 +00:00
<body>
<div id="container">
<div id="wrap">
2018-12-09 14:14:35 +00:00
<%- partial('_partial/header', null, {cache: !config.relative_link}) %>
2018-12-09 08:01:30 +00:00
<div class="outer">
2018-12-09 14:14:35 +00:00
<section id="main"><%- body %></section>
<% if (theme.sidebar && theme.sidebar !== 'bottom'){ %>
<%- partial('_partial/sidebar', null, {cache: !config.relative_link}) %>
<% } %>
2018-12-09 08:01:30 +00:00
</div>
2018-12-09 14:14:35 +00:00
<%- partial('_partial/footer', null, {cache: !config.relative_link}) %>
2018-12-09 08:01:30 +00:00
</div>
2018-12-09 14:14:35 +00:00
<%- partial('_partial/mobile-nav', null, {cache: !config.relative_link}) %>
<%- partial('_partial/after-footer') %>
2018-12-09 08:01:30 +00:00
</div>
</body>
</html>