File: base.html

package info (click to toggle)
python-django-compressor 4.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,108 kB
  • sloc: python: 4,900; makefile: 123; javascript: 5
file content (15 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% spaceless %}
{% block js %}
    <script type="text/javascript">
        alert("test using multiple inheritance and block.super");
    </script>
{% endblock %}

{% block css %}
    <style type="text/css">
        body {
            background: red;
        }
    </style>
{% endblock %}
{% endspaceless %}