layout.ejs 671 B

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