Metadata-Version: 2.1
Name: django-static-fontawesome
Version: 5.10.2
Summary: Django application contain font-awesome static files
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # django-static-fontawesome
        
        Django application contain font-awesome static files
        
        ## Install
        
            pip install django-static-fontawesome
        
        ## Installed Resources
        
        - all resource files of fontawesome-free-5.10.2-web.zip from https://fontawesome.com
        
        ## Settings
        
            INSTALLED_APPS = [
                ...
                "django_static_fontawesome",
                ...
            ]
        
        ## Use static files
        
            {% load staticfiles %}
        
            {% block style %}
                <link rel="stylesheet" type="text/css" href="{% static "fontawesome/css/all.min.css" %}" />
            {% endblock %}
        
            <i class="fa fa-home"></i> Home
        
        ## About release
        
        - Release version sames with fontawesome version.
        
Keywords: django-static-fontawesome
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
Description-Content-Type: text/markdown
