Django Foundation is a simple set of template tags that render forms in the Foundation standard html.
- Add "foundation5" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = (
...
'foundation5',
)
- Include the foundation5 URLconf in your project urls.py like this:
url(r'^foundation/', include('foundation5.urls')),
- Start the development server and visit http://127.0.0.1:8000/foundation to visit the demo.