2015-03-19 14:25:53 +00:00
|
|
|
<%- partial('_partial/head') %>
|
|
|
|
<body>
|
|
|
|
<div id="container">
|
2015-03-20 10:33:17 +00:00
|
|
|
<%- partial('_partial/header') %>
|
2015-03-19 14:25:53 +00:00
|
|
|
<div class="outer">
|
|
|
|
<%- partial('_partial/profile', null, {cache: !config.relative_link}) %>
|
|
|
|
<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}) %>
|
|
|
|
<%- partial('_partial/after-footer') %>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|