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 965B

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