layout.ejs 648 B

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