├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.py └── wordpress ├── __init__.py ├── admin.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ ├── wpexport.py │ └── wpexportauthors.py ├── models.py ├── router.py ├── templates └── wordpress │ ├── post_archive.html │ ├── post_archive_author.html │ ├── post_archive_day.html │ ├── post_archive_month.html │ ├── post_archive_year.html │ ├── post_detail.html │ ├── post_term.html │ └── wxr.xml ├── templatetags ├── __init__.py └── wp.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/setup.py -------------------------------------------------------------------------------- /wordpress/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.11.0" 2 | -------------------------------------------------------------------------------- /wordpress/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/admin.py -------------------------------------------------------------------------------- /wordpress/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordpress/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordpress/management/commands/wpexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/management/commands/wpexport.py -------------------------------------------------------------------------------- /wordpress/management/commands/wpexportauthors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/management/commands/wpexportauthors.py -------------------------------------------------------------------------------- /wordpress/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/models.py -------------------------------------------------------------------------------- /wordpress/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/router.py -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_archive.html: -------------------------------------------------------------------------------- 1 | {{ post_list }} -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_archive_author.html: -------------------------------------------------------------------------------- 1 | {% extends "wordpress/post_archive.html" %} -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_archive_day.html: -------------------------------------------------------------------------------- 1 | {% extends "wordpress/post_archive.html" %} -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_archive_month.html: -------------------------------------------------------------------------------- 1 | {% extends "wordpress/post_archive.html" %} -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_archive_year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/templates/wordpress/post_archive_year.html -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_detail.html: -------------------------------------------------------------------------------- 1 | {{ post }} -------------------------------------------------------------------------------- /wordpress/templates/wordpress/post_term.html: -------------------------------------------------------------------------------- 1 | {% extends "wordpress/post_archive.html" %} -------------------------------------------------------------------------------- /wordpress/templates/wordpress/wxr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/templates/wordpress/wxr.xml -------------------------------------------------------------------------------- /wordpress/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordpress/templatetags/wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/templatetags/wp.py -------------------------------------------------------------------------------- /wordpress/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/urls.py -------------------------------------------------------------------------------- /wordpress/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcarbaugh/django-wordpress/HEAD/wordpress/views.py --------------------------------------------------------------------------------