html.tpl 412 B

12345678910111213141516
  1. {# Update the html_style/table_structure.html documentation too #}
  2. {% if doctype_html %}
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="{{encoding}}">
  7. {% if not exclude_styles %}{% include html_style_tpl %}{% endif %}
  8. </head>
  9. <body>
  10. {% include html_table_tpl %}
  11. </body>
  12. </html>
  13. {% elif not doctype_html %}
  14. {% if not exclude_styles %}{% include html_style_tpl %}{% endif %}
  15. {% include html_table_tpl %}
  16. {% endif %}