Metadata-Version: 1.1
Name: django-static-bootstrap
Version: 3.3.7.1
Summary: Django application contain bootstrap static files.
Home-page: https://github.com/appstore-zencore/django-static-bootstrap
Author: zencore
Author-email: appstore@zencore.cn
License: MIT
Description-Content-Type: UNKNOWN
Description: django-static-bootstrap
        =======================
        
        
        Django application contain bootstrap static files.
        
        
        Install
        -------
        
        ::
        
            pip install django-static-bootstrap
        
        
        Settings
        --------
        
        ::
        
            INSTALLED_APPS = [
                ...
                "django_static_bootstrap",
                ...
            ]
        
        
        Use static resource
        -------------------
        
        ::
        
            {% load staticfiles %}
        
            {% block style %}
                <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}">
                <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap-theme.min.css" %}">
            {% endblock %}
        
            {% block script %}
                <script src="{% static "bootstrap/js/bootstrap.min.js" %}"></script>
            {% endblock %}
        
Keywords: django-static-bootstrap
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
