Generate the hreflang html header lines when using i18n urls on Django sites
Project description
Django hreflang
Providing hreflang information for your website is recommended by Google. If you are using i18n urls, this Django app can add this hreflang information automatically in one of several ways.
For more information about hreflang, have a look at https://support.google.com/webmasters/answer/189077?hl=en
Installation & Configuration:
This assumes that you are using internationalization for your URL patterns, as described at https://docs.djangoproject.com/en/1.7/topics/i18n/translation/#module-django.conf.urls.i18n
First install the package:
pip install django_hreflang
Use version django_hreflang==1.7 for django version inferior to 2.0.
You may need to take zero or one of these steps:
If you want to use the html tag, add hreflang to your INSTALLED_APPS
If you want to use the middleware, add hreflang.AddHreflangToResponse to your MIDDLEWARE_CLASSES
If you have other middleware that changes the Files header, that should be okay if it doesn’t overwrite previous headers. You may want to add hreflang as the first middleware when in doubt.
How to use
hreflang information can, in general, be provided in three ways: in the html files’s <head>, in the http Files header or through a sitemap. This package supports the first two.
Which way should I use?
My personal preference is using the HTML <head> links in a special block in the base template. If there are any special documents (e.g. pdf) use the hreflang_headers function. This allows per-page control with minimal effort (unless you serve mostly special documents).
Response header (manually)
The template tag method works great for normal files. But if you have special files (e.g. pdf) with multiple versions, you can use the response’s file header by:
from hreflang import hreflang_headers def your_view(request): response = your_code() return hreflang_headers(response)
which will take care of things.
Response header (middleware)
A more automatic way that captures all kinds of files is to use a middleware. All you have to do is add hreflang.AddHreflangToResponse to your MIDDLEWARE_CLASSES. You don’t need to use hreflang_headers or {% hreflang_tags %}. This will apply to all responses, it can not be turned on or off for individual responses.
Useful extra function(s)
hreflang contains a version of reverse with additional parameters lang and use_lang_prefix.
With both parameters left out it behaves just like Django’s reverse (which translates the url to the current language)
With lang you can provide a specific language (by code) into which the url is to be translated.
By setting use_lang_prefix to False, you can obtain an url without language prefix.
License
django_hreflang is available under the revised BSD license, see LICENSE.txt. You can do anything as long as you include the license, don’t use my name for promotion and are aware that there is no warranty.
Contributions
Any improvements through pull requests are welcome! You can also open an issue if you notice a problem.
Notable contributors:
@mverleg (owner)
@hellishnoob (pull request #1)
@pierre-sassoulas (django2.0, pr #2)
@syastrov (default prefix fix, pr #3)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.