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 1.0KB

123456789101112131415161718192021
  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="shortcut icon" href="{{ STATIC_URL }}favicon.ico" />
  10. <link rel="stylesheet" href="{{ STATIC_URL }}css/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>