summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShuhrat Dehkanov <k@efir.uz>2014-05-08 19:40:59 +0900
committerShuhrat Dehkanov <k@efir.uz>2014-05-08 19:40:59 +0900
commita2ff6895293e46e1aea81de8717c67ca38b5ca1a (patch)
tree9c633190c0d9fa54be1ec10ef12f39c2c5451dd2
parentac7cc90a6e2c524c8b81ac59762a26247383f728 (diff)
downloadaskbot-a2ff6895293e46e1aea81de8717c67ca38b5ca1a.tar.gz
askbot-a2ff6895293e46e1aea81de8717c67ca38b5ca1a.tar.bz2
askbot-a2ff6895293e46e1aea81de8717c67ca38b5ca1a.zip
Self-closed font link tags
This is to fix 'end tag for "link" omitted' markup validation error
-rw-r--r--askbot/templates/meta/fonts.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/templates/meta/fonts.html b/askbot/templates/meta/fonts.html
index 1e0fe707..4332e1a6 100644
--- a/askbot/templates/meta/fonts.html
+++ b/askbot/templates/meta/fonts.html
@@ -10,6 +10,6 @@
</style>
{% else %}
{# note: for IE8 we ask for fonts separately #}
- <link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=latin-ext' rel='stylesheet' type='text/css'>
- <link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=cyrillic-ext' rel='stylesheet' type='text/css'>
+ <link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=latin-ext' rel='stylesheet' type='text/css' />
+ <link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=cyrillic-ext' rel='stylesheet' type='text/css' />
{% endif %}