diff options
| author | Aymeric Augustin | 2013-11-13 21:18:19 +0100 |
|---|---|---|
| committer | Aymeric Augustin | 2013-11-15 18:21:59 +0100 |
| commit | 5f54e2d88a12ec7fa06bd2a9dd54e1af2f0b50f7 (patch) | |
| tree | 2e07be38749bb2e42b23737f0a6b800b9b9507f0 /example | |
| parent | 80e94bd64ca23d78e57fe0937a9924e4df08072a (diff) | |
| download | django-debug-toolbar-5f54e2d88a12ec7fa06bd2a9dd54e1af2f0b50f7.tar.bz2 | |
Add doctype to HTML templates.
Diffstat (limited to 'example')
| -rw-r--r-- | example/templates/index.html | 1 | ||||
| -rw-r--r-- | example/templates/jquery/index.html | 1 | ||||
| -rw-r--r-- | example/templates/mootools/index.html | 1 | ||||
| -rw-r--r-- | example/templates/prototype/index.html | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/example/templates/index.html b/example/templates/index.html index c32c220..f4d6518 100644 --- a/example/templates/index.html +++ b/example/templates/index.html @@ -1,4 +1,5 @@ {% load cache %} +<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> diff --git a/example/templates/jquery/index.html b/example/templates/jquery/index.html index 20665c2..98f5409 100644 --- a/example/templates/jquery/index.html +++ b/example/templates/jquery/index.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html index 047ea97..803f004 100644 --- a/example/templates/mootools/index.html +++ b/example/templates/mootools/index.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> diff --git a/example/templates/prototype/index.html b/example/templates/prototype/index.html index b9a0ec8..fc05b8a 100644 --- a/example/templates/prototype/index.html +++ b/example/templates/prototype/index.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> |
