{ "info": { "author": "Mitchel Cabuloy", "author_email": "mixxorz@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Plugins", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "django-inline-svg |latest-version|\n==================================\n\n|build-status| |monthly-downloads| |software-license|\n\nA simple plugin that adds an ``svg`` template tag to inline your SVGs in your\nDjango templates.\n\nInstallation\n------------\n\nInstall it from pypi.\n\n::\n\n $ pip install django-inline-svg\n\nAdd ``svg`` to your ``INSTALLED_APPS``.\n\n::\n\n INSTALLED_APPS = (\n ...\n 'svg',\n ...\n )\n\nUsage\n-----\n\nStore your SVGs in folder named ``svg`` at the root of any of your static file\ndirectories.\n\n::\n\n my_app\n |-- static\n | |-- svg\n | |-- logo.svg\n | |-- check.svg\n | |-- cross.svg\n\nUse the ``svg`` template tag.\n\n::\n\n {% load svg %}\n\n