base_thin.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {% load i18n static %}
  2. <!DOCTYPE html>
  3. <html lang="{{ LANGUAGE_CODE }}">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>{% block title %}{% trans "Misago Administration" %}{% endblock %}</title>
  9. <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
  10. <!--[if lt IE 9]>
  11. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  12. <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  13. <![endif]-->
  14. <link href="{% static 'misago/admin/css/style.css' %}" rel="stylesheet">
  15. <link rel="apple-touch-icon" href="{% static 'apple-touch-icon.png' %}">
  16. <link rel="apple-touch-icon" sizes="57x57" href="{% static 'apple-touch-icon-57.png' %}">
  17. <link rel="apple-touch-icon" sizes="72x72" href="{% static 'apple-touch-icon-72.png' %}">
  18. <link rel="apple-touch-icon" sizes="76x76" href="{% static 'apple-touch-icon-76.png' %}">
  19. <link rel="apple-touch-icon" sizes="80x80" href="{% static 'apple-touch-icon-80.png' %}">
  20. <link rel="apple-touch-icon" sizes="114x114" href="{% static 'apple-touch-icon-114.png' %}">
  21. <link rel="apple-touch-icon" sizes="120x120" href="{% static 'apple-touch-icon-120.png' %}">
  22. <link rel="apple-touch-icon" sizes="144x144" href="{% static 'apple-touch-icon-144.png' %}">
  23. <link rel="apple-touch-icon" sizes="152x152" href="{% static 'apple-touch-icon-152.png' %}">
  24. <link rel="apple-touch-icon" sizes="167x167" href="{% static 'apple-touch-icon-167.png' %}">
  25. <link rel="apple-touch-icon" sizes="180x180" href="{% static 'apple-touch-icon-180.png' %}">
  26. <link rel="shortcut icon" href="{% static 'favicon.ico' %}">
  27. <link rel="icon" sizes="16x16 32x32" href="{% static 'favicon.ico' %}">
  28. {% block extra-head %}{% endblock extra-head %}
  29. </head>
  30. <body>
  31. {% block body %}{% endblock %}
  32. </body>
  33. </html>