layout.ejs 580 B

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