2023-10-03 11:14:36 +08:00
|
|
|
<%- partial('_partial/head') %>
|
|
|
|
<body>
|
|
|
|
<div id="container">
|
|
|
|
<div id="wrap">
|
|
|
|
<%- partial('_partial/header', null, {cache: !config.relative_link}) %>
|
|
|
|
<div class="outer">
|
|
|
|
<section id="main"><%- body %></section>
|
|
|
|
<% if (theme.sidebar && theme.sidebar !== 'bottom'){ %>
|
|
|
|
<%- partial('_partial/sidebar', null, {cache: !config.relative_link}) %>
|
|
|
|
<% } %>
|
|
|
|
</div>
|
|
|
|
<%- partial('_partial/footer', null, {cache: !config.relative_link}) %>
|
|
|
|
</div>
|
|
|
|
<%- partial('_partial/mobile-nav', null, {cache: !config.relative_link}) %>
|
|
|
|
<%- partial('_partial/after-footer') %>
|
|
|
|
</div>
|
|
|
|
</body>
|
2023-09-25 15:58:56 +08:00
|
|
|
</html>
|