Skip to content

Library for managing <meta> tags at runtime for your Wagtail site

License

Notifications You must be signed in to change notification settings

Nigel2392/wagtail_meta

Repository files navigation

1716979011262

wagtail_meta

A library to manage meta-tags at runtime for your Wagtail site.

Allows for using context variables in a custom HTML meta tag, or the tag value content itself.

Quick start

  1. Install the package via pip:

    pip install wagtail_meta
  2. Add 'wagtail_meta' to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
       # ...,
       'wagtail_meta',
       # ...,
    ]
    
  3. Use the template tag in your base template

{% load wagtail_meta %}
<!DOCTYPE html>
<html>
   <head>
       ...

       {% metatags %}
       {# Optionally call with model argument {% metatags settings.wagtail_meta.metatags.tags %} #}

       ...
   </head>
   <body>
       ...
   </body>
</html>

About

Library for managing <meta> tags at runtime for your Wagtail site

Resources

License

Stars

Watchers

Forks

Packages

No packages published