Files
deb-python-django-compressor/compressor/tests/templates/test_compressor_offline.html
2011-01-28 01:30:59 +01:00

15 lines
282 B
HTML

{% load compress %}
{% compress css%}
<style type="text/css">
body {
background: {{ color|default:"red" }};
}
</style>
{% endcompress %}
{% compress js%}
<script type="text/javascript">
alert("test");
</script>
{% endcompress %}