diff options
| author | Claude Paroz <claude@2xlibre.net> | 2022-01-21 15:46:37 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2022-01-22 16:38:14 +0100 |
| commit | 7c4f3965098baad2396e24501e09237425a7bd6f (patch) | |
| tree | 278ceb3d95a513df3d74941eeb46b927a04224a3 /docs/intro | |
| parent | 9dc65263d47a5b8857492c10ce151bab83cfe672 (diff) | |
Stopped including type="text/css" attributes for CSS link tags.
Diffstat (limited to 'docs/intro')
| -rw-r--r-- | docs/intro/tutorial06.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial06.txt b/docs/intro/tutorial06.txt index c3df546cae..f0087f8905 100644 --- a/docs/intro/tutorial06.txt +++ b/docs/intro/tutorial06.txt @@ -74,7 +74,7 @@ Next, add the following at the top of ``polls/templates/polls/index.html``: {% load static %} - <link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}"> + <link rel="stylesheet" href="{% static 'polls/style.css' %}"> The ``{% static %}`` template tag generates the absolute URL of static files. |
