12345678910111213141516171819202122232425262728 |
- {% if data['ajax'] == False %}
- <!DOCTYPE html>
- <html>
- <head>
- {%include 'inc/header.html'%}
- </head>
- <body>
- <div class="wrapper clearfix">
- {%include 'inc/nav.html'%}
- <div class="right-cont">
- {%include 'inc/top.html'%}
- <div class="main" id="loadMain">
- {%include 'inc/msg.html'%}
- {% end %}
- {% block content %}
-
- {% end %}
- {% if data['ajax'] == False %}
- </div>
- </div>
- </div>
- {%include 'inc/footer.html'%}
- {%include 'inc/script.html'%}
- {% block script %}
- {% end %}
- </body>
- </html>
- {% end %}
|