layout.ejs 562 B

12345678910111213141516
  1. <%- partial('_partial/head') %>
  2. <body>
  3. <div id="container">
  4. <%- partial('_partial/header') %>
  5. <div class="outer">
  6. <%- partial('_partial/profile', null, {cache: !config.relative_link}) %>
  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. <%- partial('_partial/after-footer') %>
  14. </div>
  15. </body>
  16. </html>