├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── django_plugin_blog ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── django_plugin_blog │ │ ├── archive.html │ │ ├── base.html │ │ ├── entry.html │ │ ├── index.html │ │ ├── tag.html │ │ └── year.html └── views.py ├── pyproject.toml └── tests ├── test_django_plugin_blog.py └── test_project ├── __init__.py ├── settings.py └── urls.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/README.md -------------------------------------------------------------------------------- /django_plugin_blog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/__init__.py -------------------------------------------------------------------------------- /django_plugin_blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/admin.py -------------------------------------------------------------------------------- /django_plugin_blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/apps.py -------------------------------------------------------------------------------- /django_plugin_blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_plugin_blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_plugin_blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/models.py -------------------------------------------------------------------------------- /django_plugin_blog/templates/django_plugin_blog/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/templates/django_plugin_blog/archive.html -------------------------------------------------------------------------------- /django_plugin_blog/templates/django_plugin_blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/templates/django_plugin_blog/base.html -------------------------------------------------------------------------------- /django_plugin_blog/templates/django_plugin_blog/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/templates/django_plugin_blog/entry.html -------------------------------------------------------------------------------- /django_plugin_blog/templates/django_plugin_blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/templates/django_plugin_blog/index.html -------------------------------------------------------------------------------- /django_plugin_blog/templates/django_plugin_blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/templates/django_plugin_blog/tag.html -------------------------------------------------------------------------------- /django_plugin_blog/templates/django_plugin_blog/year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/templates/django_plugin_blog/year.html -------------------------------------------------------------------------------- /django_plugin_blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/django_plugin_blog/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_django_plugin_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/tests/test_django_plugin_blog.py -------------------------------------------------------------------------------- /tests/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/tests/test_project/settings.py -------------------------------------------------------------------------------- /tests/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/django-plugin-blog/HEAD/tests/test_project/urls.py --------------------------------------------------------------------------------