File: index.html

package info (click to toggle)
python-django-libsass 0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 184 kB
  • sloc: python: 211; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% load compress static %}
<!DOCTYPE HTML>
<html>
    <head>
        <title>Hello django-libsass</title>
        {% compress css %}
            <link rel="stylesheet" type="text/x-scss" href="{% static "css/index.scss" %}" />
        {% endcompress %}
    </head>
    <body>
        <h1>It worked!</h1>
    </body>
</html>