├── .github └── workflows │ └── pypi.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── django_json_ld ├── __init__.py ├── settings.py ├── templatetags │ ├── __init__.py │ └── json_ld.py ├── util.py └── views.py └── setup.py /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/README.md -------------------------------------------------------------------------------- /django_json_ld/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/django_json_ld/__init__.py -------------------------------------------------------------------------------- /django_json_ld/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/django_json_ld/settings.py -------------------------------------------------------------------------------- /django_json_ld/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_json_ld/templatetags/json_ld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/django_json_ld/templatetags/json_ld.py -------------------------------------------------------------------------------- /django_json_ld/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/django_json_ld/util.py -------------------------------------------------------------------------------- /django_json_ld/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/django_json_ld/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimdoublej/django-json-ld/HEAD/setup.py --------------------------------------------------------------------------------