123456789101112131415161718 |
- <%- 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>
|