You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.html 972B

123456789101112131415161718192021
  1. {% load i18n %}
  2. <!DOCTYPE html>
  3. <html lang="{% block language %}en-gb{% endblock %}">
  4. <head>
  5. <title>{% block title %}{% trans "Oscar Test Shop" %}{% endblock %}</title>
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
  7. <meta name="created" content='{% now "jS M Y h:i" %}' />
  8. <meta name="description" content="{% block description %}{% endblock %}" />
  9. <meta name="keywords" content="{% block keywords %}{% endblock %}" />
  10. <link rel="stylesheet" href="{{ STATIC_URL }}css/base/screen.css" />
  11. {% block extra_head %}{% endblock %}
  12. </head>
  13. <body id="{% block body_id %}default{% endblock %}" class="{% block body_class %}default{% endblock %}">
  14. {% block layout %}{% endblock %}
  15. {% block tracking %}
  16. {% if not debug and not request.user.is_staff %}
  17. <!-- Tracking to go here. -->
  18. {% endif %}
  19. {% endblock %}
  20. </body>
  21. </html>