Metadata-Version: 2.0
Name: django-markdown-blog
Version: 0.2
Summary: A simple Django app to provide markdown blog functionality.
Home-page: UNKNOWN
Author: Kevin Mann
Author-email: kevinrmann@gmail.com
License: BSD License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: Django (>=1.9)
Requires-Dist: django-imagekit (>=3.3)
Requires-Dist: django-markdown-app (>=0.9.0)

=====
Django Markdown Blog
=====

Django Markdown Blog is a simple Django app that will give any Django project a blog that works with markdown.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "polls" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'polls',
    ]

2. Include the polls URLconf in your project urls.py like this::

    url(r'^blog/', include('markdown_blog.urls')),

3. Run `python manage.py migrate` to create the blog models.

4. Start the development server and visit http://localhost:8000/admin/
   to create your first blog post (you'll need the Admin app enabled).

5. Visit http://localhost:8000/polls/ to view your latest blog posts.


