2
0

base.html 886 B

1234567891011121314151617181920212223
  1. {% load static wagtailuserbar %}
  2. <!DOCTYPE html>
  3. <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
  4. <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
  5. <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
  6. <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
  7. <head>
  8. <meta charset="utf-8">
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10. <title>{% block title %}{% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %}{% endblock %}{% block title_suffix %}{% endblock %}</title>
  11. <meta name="description" content="">
  12. <meta name="viewport" content="width=device-width, initial-scale=1">
  13. </head>
  14. <body class="{% block body_class %}{% endblock %}">
  15. {% wagtailuserbar %}
  16. {% block content %}{% endblock %}
  17. </body>
  18. </html>