Metadata-Version: 1.1
Name: django-static-html5shiv
Version: 3.7.3.1
Summary: Django application contain html5shiv static files.
Home-page: https://github.com/appstore-zencore/django-static-html5shiv
Author: zencore
Author-email: appstore@zencore.cn
License: MIT
Description-Content-Type: UNKNOWN
Description: django-static-html5shiv
        =======================
        
        
        Django application contain html5shiv static files.
        
        
        Install
        -------
        
        ::
        
            pip install django-static-html5shiv
        
        
        Settings
        --------
        
        ::
        
            INSTALLED_APPS = [
                ...
                "django_static_html5shiv",
                ...
            ]
        
        
        Use static resource
        -------------------
        
        ::
        
            {% load staticfiles %}
        
            {% block script %}
                <script src="{% static "html5shiv/html5shiv.min.js" %}"></script>
                <script src="{% static "html5shiv/html5shiv-printshiv.min.js" %}"></script>
            {% endblock %}
        
        
        About package version
        ---------------------
        
        django-static-html5shiv Uses version number like v3.7.3.1. The first three number is the version number of html5shiv, and the last number is our build number.
        
        
Keywords: django-static-html5shiv
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires: django
