page.html 287 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. {% include head.html %}
  4. <body>
  5. <div class="content">
  6. {% include header.html %}
  7. {% include mobile_menu.html %}
  8. <main class="main">
  9. {{ content }}
  10. </main>
  11. </div>
  12. {% include footer.html %}
  13. {% include js.html %}
  14. </body>
  15. </html>