theme.html 679 B

12345678910111213141516171819202122232425262728
  1. {% if data['ajax'] == False %}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. {%include 'inc/header.html'%}
  6. </head>
  7. <body>
  8. <div class="wrapper clearfix">
  9. {%include 'inc/nav.html'%}
  10. <div class="right-cont">
  11. {%include 'inc/top.html'%}
  12. <div class="main" id="loadMain">
  13. {%include 'inc/msg.html'%}
  14. {% end %}
  15. {% block content %}
  16. {% end %}
  17. {% if data['ajax'] == False %}
  18. </div>
  19. </div>
  20. </div>
  21. {%include 'inc/footer.html'%}
  22. {%include 'inc/script.html'%}
  23. {% block script %}
  24. {% end %}
  25. </body>
  26. </html>
  27. {% end %}