diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-12 15:47:51 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-12 15:47:51 -0400 |
commit | b42dfce3d18d6dd18e1a837eeabc98c25a248da5 (patch) | |
tree | eba6f113554c1553a41567dca6c5776cd4aadf25 /templates | |
parent | 4db17f6d5f07c551a2161898d74aae7208bd0229 (diff) | |
download | askbot-b42dfce3d18d6dd18e1a837eeabc98c25a248da5.tar.gz askbot-b42dfce3d18d6dd18e1a837eeabc98c25a248da5.tar.bz2 askbot-b42dfce3d18d6dd18e1a837eeabc98c25a248da5.zip |
Added Adolfo's canonical url link fix
Diffstat (limited to 'templates')
-rw-r--r-- | templates/question.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/question.html b/templates/question.html index 13d283ed..66713342 100644 --- a/templates/question.html +++ b/templates/question.html @@ -8,7 +8,7 @@ {% block forejs %} <meta name="description" content="{{question.summary}}" /> <meta name="keywords" content="{{question.tagname_meta_generator}}" /> - <link rel="canonical" href="{{question.get_absolute_url}}"/> + <link rel="canonical" href="{{settings.APP_URL}}{{question.get_absolute_url}}"/> {% if not question.closed and request.user.is_authenticated %} <script type='text/javascript' src='/content/js/com.cnprog.editor.js'></script> <script type='text/javascript' src='/content/js/wmd/showdown.js'></script> |