layout.ejs 663 B

123456789101112131415161718
  1. <%- partial('common/head') %>
  2. <body>
  3. <div id="container">
  4. <%- partial('common/header') %>
  5. <div class="outer">
  6. <% if (theme.customize.profile.enabled) { %>
  7. <%- partial('common/profile', null, {cache: !config.relative_link}) %>
  8. <% } %>
  9. <section id="main"><%- body %></section>
  10. <% if (theme.customize.sidebar) { %>
  11. <%- partial('common/sidebar', null, {cache: !config.relative_link}) %>
  12. <% } %>
  13. </div>
  14. <%- partial('common/footer', null, {cache: !config.relative_link}) %>
  15. <%- partial('common/scripts') %>
  16. </div>
  17. </body>
  18. </html>