diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-03 13:08:47 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-03 13:08:47 -0600 |
commit | b2de5fec2bd112eb937dcb98b25685078cccdeb1 (patch) | |
tree | ca5a44e307acfef77742abbf2b1cf9fe74c627cd /templates/public | |
parent | ff371bd37628ab6f66cf4add79bb67c276e49035 (diff) |
Switch to HTML5 doctype for base template
This moves us from XHTML strict to the more useful HTML5 doctype. One
old holdover table attribute (cellspacing) is also fixed.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public')
-rw-r--r-- | templates/public/developer_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html index 5aa4c6b2..83c62952 100644 --- a/templates/public/developer_list.html +++ b/templates/public/developer_list.html @@ -18,7 +18,7 @@ </td> <td> <a name="{{ dev.username }}"></a> - <table class="bio bio-{{ dev.username }}" cellspacing="0"> + <table class="bio bio-{{ dev.username }}"> <tr> <th>Name:</th> <td>{{ dev.get_full_name }}{% if prof.latin_name %} ({{ prof.latin_name}}){% endif %}</td> |