Django Zurb Foundation 5 package.
Version of this package is equal to the version of Zurb Foundation it provides.
- Add
foundationto yourINSTALLED_APPS. - If you want to use the provided base template, extend from
foundation/base.html. If you want to write one from scratch, see the example template. - If you want to test if foundation works, include
foundation.urlsin your urls.py and visit the path. You should see the Foundation test page.
Note: these tags are deprecated in favor of including files directly with Django static tag. They will be removed in version 6.x. Templates have been updated to use the new method.
To include specific Foundation js files, you can use foundation_js tag.
For example, to include abide library use:
{% foundation_js 'abide' %}
Depending on your static url, it will replace the previous tag with something like <script src="/static/foundation/js/foundation/foundation.abide.js"></script>.
Same works for Foundation css and vendor files, but in that case use the foundation_css or foundation_vendor tag the same way.
Note that if you call foundation_js without any parameters, it will include foundation.min.js file.
Note: this tag is deprecated in favor of including files directly with Django static tag. It will be removed in version 6.x. Templates have been updated to use the new method.
The latest Foundation icons set is now included in this package. The icons are not enabled by default. To enable them use something like this in your template:
{% block css %}
{% foundation_css 'foundation-icons' %}
{% endblock css %}
If you have added foundation.urls to your urls.py visit icons/ on that path to see them.
Version 5.5.0
- Updated foundation to 5.5.0
Version 5.4.7
- Updated foundation to 5.4.7
Version 5.4.5
- Updated foundation to 5.4.5
Version 5.3.0.1
- Added scss files
Version 5.3.0
- Updated foundation to 5.3.0
- Deprecated foundation tags (they will be removed in version 6.x)
- Updated templates not to use tags
Version 5.1.1
- Updated foundation to 5.1.1
Version 5.0.3
- Moved
js/modernizrtojs/vendor/modernizrand removedjs/vendor/custom.modernizr - Moved
js/jquerytojs/vendor/jquery
Version 5.0.2
- Renamed
foundation_bodytobase_body - Removed zepto and renamed
foundation_jquery_zeptoblock tofoundation_jquery - Included foundation icons
- Renamed
foundation_includetofoundation_js - Added
foundation_vendorandfoundation_csstags - Used the tags from this package in the base template
