├── .gitignore ├── .gitmodules ├── README.rst ├── bin └── init.sh ├── lib └── 1140px │ ├── 1140.css │ ├── ie.css │ ├── layout.css │ ├── mobile.css │ ├── smallerscreen.css │ └── typeimg.css └── webapps └── django └── project ├── __init__.py ├── local_settings.py.sample ├── manage.py ├── settings.py ├── templates ├── 404.html ├── 500.html └── base.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/README.rst -------------------------------------------------------------------------------- /bin/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/bin/init.sh -------------------------------------------------------------------------------- /lib/1140px/1140.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/lib/1140px/1140.css -------------------------------------------------------------------------------- /lib/1140px/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/lib/1140px/ie.css -------------------------------------------------------------------------------- /lib/1140px/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/lib/1140px/layout.css -------------------------------------------------------------------------------- /lib/1140px/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/lib/1140px/mobile.css -------------------------------------------------------------------------------- /lib/1140px/smallerscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/lib/1140px/smallerscreen.css -------------------------------------------------------------------------------- /lib/1140px/typeimg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/lib/1140px/typeimg.css -------------------------------------------------------------------------------- /webapps/django/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapps/django/project/local_settings.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/webapps/django/project/local_settings.py.sample -------------------------------------------------------------------------------- /webapps/django/project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/webapps/django/project/manage.py -------------------------------------------------------------------------------- /webapps/django/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/webapps/django/project/settings.py -------------------------------------------------------------------------------- /webapps/django/project/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapps/django/project/templates/500.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapps/django/project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/webapps/django/project/templates/base.html -------------------------------------------------------------------------------- /webapps/django/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojii/django-cms-html5-1140px-boilerplate/HEAD/webapps/django/project/urls.py --------------------------------------------------------------------------------