Metadata-Version: 1.1
Name: django-seo-admin
Version: 0.1
Summary: App for apply SEO on your websites with Django.
Home-page: https://github.com/mapeveri/django-seo-admin
Author: Peveri Martin
Author-email: martinpeveri@gmail.com
License: BSD License
Description: django-seo-admin/README.rst
        ================
        Django SEO Admin
        ================
        
        Django SEO Admin is the app for apply SEO on your websites with Django.
        
        Installing
        ----------
        
        pip install django-seo-admin
        
        Quick start
        -----------
        
        1. Include the app 'seo' to INSTALLED_APP in the settings.py
        		
        2. Apply migration with makemigrations and migrate for registry the model of django-seo-admin
        
        3. In the template::
        	
        	<!DOCTYPE html>
        	<html>
        		<head>
        			<meta charset="UTF-8">
        			<meta name="viewport" content="width=device-width, initial-scale=1.0">
        			{% load tag_seo_admin %}
        			{% get_metadata %}
        		</head>
        		<body>
        			<h1>Django Seo Admin</h1>
        		<body>
         	</html>
        
        4. Sign in to Admin of Django and load record to the model of django-seo-admin.
           
        	Fields are: 
        	1) Type: Type tag for example: Meta and title.
        	2) Is_property: If tag contains property "property", else contains property "name"
        	3) Field: Value of property. For example, the property name contains value "keywords"
        	4) Content: Contains of property. For example, for keywords contains values "django, web, framework"
                     
        
        5. Run server
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
