Metadata-Version: 2.4
Name: wagtail-marketing-addons
Version: 0.10
Summary: A Wagtail add-on for supporting marketeer's in daily activities
Home-page: https://www.lukkien.com/
Author: Lukkien BV
Author-email: support@lukkien.com
License: BSD
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Framework :: Django
Classifier: Framework :: Wagtail
Classifier: Framework :: Wagtail :: 5
Classifier: Framework :: Wagtail :: 6
Classifier: Framework :: Wagtail :: 7
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: wagtail-modeladmin>2.0.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-django; extra == "test"
Requires-Dist: pytest-pythonpath; extra == "test"
Requires-Dist: coverage; extra == "test"
Requires-Dist: factory-boy; extra == "test"
Requires-Dist: psycopg==3.1.18; extra == "test"
Requires-Dist: tox; extra == "test"
Requires-Dist: flake8; extra == "test"
Requires-Dist: isort; extra == "test"
Provides-Extra: doc
Requires-Dist: mkdocs; extra == "doc"
Requires-Dist: pymdown-extensions; extra == "doc"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

# About wagtail-marketing-addons

An (opinionated) overview of all pages and their corresponding promotion settings.

## Support

* Wagtail 5 and higher


## Use-case

When dealing with large amounts of pages the content editor experience differs from a marketeer's editor experience. A marketeer would more likely want to see what page options were set for SEO and SEA purposes. In this case it can be quite a burden to go through the page explorer, verifying whether the page title, SEO title and search description were set properly.

## Solution

The SEO Listing within the `wagtail-marketing-addons` will show: 

* An overview of all pages in a single list;
* Relevant properties: page title, SEO title, search description;
* A preview what it could look like in a search engine;
* A basic score indicating how this would perform in terms of word and character count.

![wagtail-marketing-addons screenshot](https://raw.githubusercontent.com/LUKKIEN/wagtail-marketing-addons/main/.github/overview.jpg)

## Things to consider

As stated this plugin contains an opinionated perspective on how you would handle your HTML rendering. With this use-case and solution we're assuming the following rationale on your page:

```html
<title>{% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %} | Your Site</title>
<meta name="description" content="{% if self.search_description %}{{ self.search_description }}{% endif %}">
```

In this case your SEO title (when filled in) has a greater priority over the Page Title.

## Documentation

For more information on getting started, an overview of all available settings and the rationale behind the scoring mechanism please see [our documentation on Read the Docs](https://wagtail-marketing-addons.readthedocs.io).

---

[![Build Status](https://github.com/LUKKIEN/wagtail-marketing-addons/workflows/test/badge.svg)](https://github.com/LUKKIEN/wagtail-marketing-addons/actions?query=workflow%3Atest)
[![Documentation Status](https://readthedocs.org/projects/wagtail-marketing-addons/badge/?version=latest)](https://wagtail-marketing-addons.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/wagtail-marketing-addons.svg)](https://badge.fury.io/py/wagtail-marketing-addons)
![GitHub](https://img.shields.io/github/license/lukkien/wagtail-marketing-addons.svg)
