Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Percy committed Feb 1, 2012
0 parents commit d5ec6a6
Show file tree
Hide file tree
Showing 37 changed files with 6,967 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
@@ -0,0 +1,7 @@
.idea/*
*.egg-info
*.egg
*.py[co]
build/*
dist/*
local.db
13 changes: 13 additions & 0 deletions LICENSE
@@ -0,0 +1,13 @@
Copyright 2012 Twitter, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,4 @@
include LICENSE

recursive-include djbootstrap/static *
recursive-include djbootstrap/templates *
16 changes: 16 additions & 0 deletions README
@@ -0,0 +1,16 @@

DjBootstrap

Helps kickstart your django app using the awesome twitter bootstrap library.

http://twitter.github.com/bootstrap/

INSTALLATION
>>> pip install djbootstrap

Just add djbootstrap to your INSTALLED_APPS

Provides:
a base.html as a base template if you want to use it.
a bootstrapped_form.html template to make your forms pretty
a notification_center.html template to make django messages framework pretty.
2 changes: 2 additions & 0 deletions djbootstrap/__init__.py
@@ -0,0 +1,2 @@

VERSION = '2.0.0'
Empty file added djbootstrap/models.py
Empty file.

0 comments on commit d5ec6a6

Please sign in to comment.