Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryankanno/django-templates
Just a small Django app to get the latest and greatest templates.
https://github.com/ryankanno/django-templates
Last synced: 11 days ago
JSON representation
Just a small Django app to get the latest and greatest templates.
- Host: GitHub
- URL: https://github.com/ryankanno/django-templates
- Owner: ryankanno
- Archived: true
- Created: 2012-06-09T13:09:14.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-30T12:00:29.000Z (over 11 years ago)
- Last Synced: 2024-08-02T14:12:27.498Z (4 months ago)
- Language: Python
- Size: 94.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
Awesome Lists containing this project
README
# django-templates
**Here be dragons**
Just a small Django app to get the latest and greatest base templates.
Features
--------Supports:
* [HTML5 Boilerplate 3.0](http://html5boilerplate.com)
Install
-------Clone this project somewhere your Python path can find it.
Add django-templates to INSTALLED_APPS
INSTALLED_APPS = (
...
'django-templates',
...
)Usage
-----To use django-templates, just extend the various base layouts.
{% extends 'html5boilerplate/base.html' %}
{% block header.content %}
Helllllo World.
{% endblock header.content %}