18 lines
663 B
Plaintext
18 lines
663 B
Plaintext
<%- partial('common/head') %>
|
|
<body>
|
|
<div id="container">
|
|
<%- partial('common/header') %>
|
|
<div class="outer">
|
|
<% if (theme.customize.profile.enabled) { %>
|
|
<%- partial('common/profile', null, {cache: !config.relative_link}) %>
|
|
<% } %>
|
|
<section id="main"><%- body %></section>
|
|
<% if (theme.customize.sidebar) { %>
|
|
<%- partial('common/sidebar', null, {cache: !config.relative_link}) %>
|
|
<% } %>
|
|
</div>
|
|
<%- partial('common/footer', null, {cache: !config.relative_link}) %>
|
|
<%- partial('common/scripts') %>
|
|
</div>
|
|
</body>
|
|
</html> |