Skip to main content

Generate the hreflang html header lines when using i18n urls

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

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).

HTML <head> (template tags)

To include the links in the <head>, follow this minimal example:

{% load hreflang %}
<head>
    {% hreflang_tags %}
</head>

(hreflang must be in installed apps.)

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 template tags

For convenience, some more template tags are included.

To obtain a link to the current document in another language, use:

{% translate_url 'en' %}

To get a list of <li>-links to all (other) language versions of the current document, use one of:

<ul>{% lang_list %}</ul>
<ul>{% other_lang_list %}</ul>

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_hreflang-1.1.tar.gz (6.0 kB view details)

Uploaded Source

File details

Details for the file django_hreflang-1.1.tar.gz.

File metadata

  • Download URL: django_hreflang-1.1.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django_hreflang-1.1.tar.gz
Algorithm Hash digest
SHA256 d058c79066805ff48185d636b940303fa298d7c6b059457cf692cef4e2881a1c
MD5 1466f2891c71571518e8556ebff87fb7
BLAKE2b-256 d4376101d8305cf74df7f8cb0010d0071d73d85d644fddea6326015b943495b6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page