├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── azure-pipelines.yml ├── docs ├── _templates │ └── sponsor.html ├── conf.py ├── contributing.rst ├── customizing │ ├── customize-editor.rst │ ├── customize-meta.rst │ ├── django-settings.rst │ └── index.rst ├── getting-started │ ├── edit-meta.rst │ ├── index.rst │ ├── install.rst │ └── migration-3.rst ├── index.rst ├── reference │ ├── blocks.rst │ ├── index.rst │ ├── models.rst │ └── utils.rst ├── releases.rst └── test-meta.rst ├── pyproject.toml ├── requirements-dev.txt ├── testproject ├── home │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210731_1335.py │ │ ├── 0003_alter_articlepage_struct_org_actions_and_more.py │ │ ├── 0004_alter_articlepage_struct_org_logo_and_more.py │ │ ├── 0005_remove_articlepage_struct_org_actions_and_more.py │ │ ├── 0006_alter_articlepage_og_image_alter_seopage_og_image.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── home │ │ │ └── page.html │ └── tests.py ├── manage.py └── testproject │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── wagtailseo ├── __init__.py ├── apps.py ├── blocks.py ├── migrations ├── 0001_initial.py ├── 0002_remove_seosettings_amp_pages.py ├── 0003_seosettings_struct_org_fields.py ├── 0004_seosettings_og_image_default.py └── __init__.py ├── models.py ├── schema.py ├── settings.py ├── templates └── wagtailseo │ ├── meta.html │ ├── search-preview.html │ ├── struct_data.html │ ├── struct_org_data.html │ └── wagtailseo-line-chart.svg ├── utils.py └── wagtail_hooks.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/_templates/sponsor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/_templates/sponsor.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/customizing/customize-editor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/customizing/customize-editor.rst -------------------------------------------------------------------------------- /docs/customizing/customize-meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/customizing/customize-meta.rst -------------------------------------------------------------------------------- /docs/customizing/django-settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/customizing/django-settings.rst -------------------------------------------------------------------------------- /docs/customizing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/customizing/index.rst -------------------------------------------------------------------------------- /docs/getting-started/edit-meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/getting-started/edit-meta.rst -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/getting-started/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/getting-started/install.rst -------------------------------------------------------------------------------- /docs/getting-started/migration-3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/getting-started/migration-3.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reference/blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/reference/blocks.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/reference/models.rst -------------------------------------------------------------------------------- /docs/reference/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/reference/utils.rst -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /docs/test-meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/docs/test-meta.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /testproject/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/home/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/migrations/0001_initial.py -------------------------------------------------------------------------------- /testproject/home/migrations/0002_auto_20210731_1335.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/migrations/0002_auto_20210731_1335.py -------------------------------------------------------------------------------- /testproject/home/migrations/0003_alter_articlepage_struct_org_actions_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/migrations/0003_alter_articlepage_struct_org_actions_and_more.py -------------------------------------------------------------------------------- /testproject/home/migrations/0004_alter_articlepage_struct_org_logo_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/migrations/0004_alter_articlepage_struct_org_logo_and_more.py -------------------------------------------------------------------------------- /testproject/home/migrations/0005_remove_articlepage_struct_org_actions_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/migrations/0005_remove_articlepage_struct_org_actions_and_more.py -------------------------------------------------------------------------------- /testproject/home/migrations/0006_alter_articlepage_og_image_alter_seopage_og_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/migrations/0006_alter_articlepage_og_image_alter_seopage_og_image.py -------------------------------------------------------------------------------- /testproject/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/models.py -------------------------------------------------------------------------------- /testproject/home/templates/home/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/templates/home/page.html -------------------------------------------------------------------------------- /testproject/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/home/tests.py -------------------------------------------------------------------------------- /testproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/manage.py -------------------------------------------------------------------------------- /testproject/testproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/testproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/testproject/settings.py -------------------------------------------------------------------------------- /testproject/testproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/testproject/urls.py -------------------------------------------------------------------------------- /testproject/testproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/testproject/testproject/wsgi.py -------------------------------------------------------------------------------- /wagtailseo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/__init__.py -------------------------------------------------------------------------------- /wagtailseo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/apps.py -------------------------------------------------------------------------------- /wagtailseo/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/blocks.py -------------------------------------------------------------------------------- /wagtailseo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wagtailseo/migrations/0002_remove_seosettings_amp_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/migrations/0002_remove_seosettings_amp_pages.py -------------------------------------------------------------------------------- /wagtailseo/migrations/0003_seosettings_struct_org_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/migrations/0003_seosettings_struct_org_fields.py -------------------------------------------------------------------------------- /wagtailseo/migrations/0004_seosettings_og_image_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/migrations/0004_seosettings_og_image_default.py -------------------------------------------------------------------------------- /wagtailseo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailseo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/models.py -------------------------------------------------------------------------------- /wagtailseo/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/schema.py -------------------------------------------------------------------------------- /wagtailseo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/settings.py -------------------------------------------------------------------------------- /wagtailseo/templates/wagtailseo/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/templates/wagtailseo/meta.html -------------------------------------------------------------------------------- /wagtailseo/templates/wagtailseo/search-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/templates/wagtailseo/search-preview.html -------------------------------------------------------------------------------- /wagtailseo/templates/wagtailseo/struct_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/templates/wagtailseo/struct_data.html -------------------------------------------------------------------------------- /wagtailseo/templates/wagtailseo/struct_org_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/templates/wagtailseo/struct_org_data.html -------------------------------------------------------------------------------- /wagtailseo/templates/wagtailseo/wagtailseo-line-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/templates/wagtailseo/wagtailseo-line-chart.svg -------------------------------------------------------------------------------- /wagtailseo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/utils.py -------------------------------------------------------------------------------- /wagtailseo/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedcorp/wagtail-seo/HEAD/wagtailseo/wagtail_hooks.py --------------------------------------------------------------------------------