├── .coveragerc ├── .editorconfig ├── .flake8 ├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .vscode └── settings.json ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Procfile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst ├── requirements.txt └── usage.rst ├── example ├── __init__.py ├── db.sqlite ├── media │ ├── ape_blurry.jpg │ ├── ape_sharp.jpg │ ├── apes.jpeg │ ├── images │ │ ├── apes.width-1100.jpg │ │ ├── apes.width-2200.jpg │ │ ├── apes.width-300.jpg │ │ ├── apes.width-500.jpg │ │ ├── apes.width-600.jpg │ │ └── apes.width-768.jpg │ ├── original_images │ │ └── apes.jpeg │ └── wagtail_srcset.jpg ├── settings.py ├── static │ └── .gitignore ├── templates │ ├── index.html │ ├── manual.html │ └── thumbnails.html ├── urls.py └── views.py ├── manage.py ├── notebooks ├── create_resized_images.ipynb ├── debug.ipynb ├── image_example.ipynb ├── tag_tests.ipynb └── wagtail_as_syntax_for_srcset_image.ipynb ├── pyproject.toml ├── setup.cfg ├── tests ├── __init__.py ├── conftest.py ├── settings.py ├── test_templatetags.py ├── urls.py └── utils.py ├── tox.ini └── wagtail_srcset ├── __init__.py ├── apps.py ├── templatetags └── wagtail_srcset_tags.py └── urls.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "black" 3 | } 4 | -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/db.sqlite -------------------------------------------------------------------------------- /example/media/ape_blurry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/ape_blurry.jpg -------------------------------------------------------------------------------- /example/media/ape_sharp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/ape_sharp.jpg -------------------------------------------------------------------------------- /example/media/apes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/apes.jpeg -------------------------------------------------------------------------------- /example/media/images/apes.width-1100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/images/apes.width-1100.jpg -------------------------------------------------------------------------------- /example/media/images/apes.width-2200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/images/apes.width-2200.jpg -------------------------------------------------------------------------------- /example/media/images/apes.width-300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/images/apes.width-300.jpg -------------------------------------------------------------------------------- /example/media/images/apes.width-500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/images/apes.width-500.jpg -------------------------------------------------------------------------------- /example/media/images/apes.width-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/images/apes.width-600.jpg -------------------------------------------------------------------------------- /example/media/images/apes.width-768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/images/apes.width-768.jpg -------------------------------------------------------------------------------- /example/media/original_images/apes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/original_images/apes.jpeg -------------------------------------------------------------------------------- /example/media/wagtail_srcset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/media/wagtail_srcset.jpg -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/static/.gitignore -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/templates/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/templates/manual.html -------------------------------------------------------------------------------- /example/templates/thumbnails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/templates/thumbnails.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/example/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/manage.py -------------------------------------------------------------------------------- /notebooks/create_resized_images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/notebooks/create_resized_images.ipynb -------------------------------------------------------------------------------- /notebooks/debug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/notebooks/debug.ipynb -------------------------------------------------------------------------------- /notebooks/image_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/notebooks/image_example.ipynb -------------------------------------------------------------------------------- /notebooks/tag_tests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/notebooks/tag_tests.ipynb -------------------------------------------------------------------------------- /notebooks/wagtail_as_syntax_for_srcset_image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/notebooks/wagtail_as_syntax_for_srcset_image.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/tests/test_templatetags.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/tox.ini -------------------------------------------------------------------------------- /wagtail_srcset/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | HTML5 image srcset support for Wagtail. 3 | """ 4 | __version__ = "0.3.0" 5 | -------------------------------------------------------------------------------- /wagtail_srcset/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/wagtail_srcset/apps.py -------------------------------------------------------------------------------- /wagtail_srcset/templatetags/wagtail_srcset_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/wagtail_srcset/templatetags/wagtail_srcset_tags.py -------------------------------------------------------------------------------- /wagtail_srcset/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephes/wagtail_srcset/HEAD/wagtail_srcset/urls.py --------------------------------------------------------------------------------