Metadata-Version: 1.1
Name: django-pageguide
Version: 0.1
Summary: An Django integration with pageguide, an interactive, responsive, and smart guide for web page elements using jQuery and CSS3
Home-page: https://github.com/msaelices/django-pageguide/
Author: Manuel Saelices
Author-email: msaelices@gmail.com
License: UNKNOWN
Description: django-pageguide
        ================
        
        Django integration with [pageguide](https://github.com/tracelytics/pageguide), an interactive guide for web page elements
        
        Installation
        ============
        
        Put the `pageguide` app In your `settings.py`:
        ----------------------------------------------
        
            INSTALLED_APPS = (
                'django.contrib.auth',
                'django.contrib.contenttypes',
                'django.contrib.sessions',
                'django.contrib.sites',
                'django.contrib.admin',
        
                #.....................#
        
                'pageguide',
            )
        
        
        Run the migrations:
        -------------------
        
            >>> python manage.py syncdb --migrate
        
        
        Create the pages into the admin interface
        -----------------------------------------
        
        Go to `/admin/pageguide/`
        
        
        Integrate in your base template:
        --------------------------------
        
        * Into the top page:
        
            {% load pageguide_tags %}
        
            {% pageguide_css %}
        
        * Into the bottom (near the `</body>` tag):
        
            {% pageguide %}
        
            {% pageguide_js %}
        
        
        Development
        ===========
        
        You can get the last bleeding edge version of django-pageguide by doing a clone
        of its git repository
        
          git clone https://github.com/msaelices/django-pageguide.git
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
