Metadata-Version: 1.0
Name: django-versioned-static-url
Version: 0.6
Summary: A template tag for generating a URL for a static file, with a version string which will be effectively unique based on the contents of the file.
Home-page: https://github.com/ubuntudesign/django-versioned-static-url
Author: Robin
Author-email: robin.winslow@canonical.com
License: UNKNOWN
Description: Django versioned static
        =======================
        
        A ``{% versioned_static %}`` template tag for generating a URL for a
        static file, with a version string which will be effectively unique
        based on the contents of the file.
        
        Example
        -------
        
        ::
        
            /static/css/global.css?v=a23bd10
        
        Installation
        ------------
        
        .. code:: python
        
            # settings.py
            INSTALLED_APPS += ['django_versioned_static_url']
        
        Usage
        -----
        
        The following template code:
        
        .. code:: html
        
            {% load versioned_static %}
            <link rel="stylesheet" href="{% versioned_static 'css/global.css' %}" />
        
        Outputs:
        
        .. code:: html
        
            <link rel="stylesheet" href="/static/css/global.css?v=feb0d0e" />
        
Platform: UNKNOWN
