default.html 402 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="{{ page.lang | default: site.lang | default: "en" }}">
  3. {%- include head.html -%}
  4. <body class="hold-transition sidebar-mini layout-fixed layout-navbar-fixed">
  5. <div class="wrapper">
  6. {%- include navbar.html -%}
  7. {%- include sidebar.html -%}
  8. {{content}}
  9. {%- include footer.html -%}
  10. </div>
  11. {%- include foot.html -%}
  12. </body>
  13. </html>