├── .gitignore ├── README.md ├── Vagrantfile ├── db └── .keep ├── docs ├── Makefile ├── __init__.py ├── _static │ └── .keep ├── _templates │ └── .keep ├── build-github.zsh ├── conf.py ├── index.rst └── make.bat ├── fabfile.py ├── install.sh ├── install_requirements.sh ├── layout ├── __init__.py ├── models.py ├── static │ ├── apple-touch-icon-114x114-precomposed.png │ ├── apple-touch-icon-144x144-precomposed.png │ ├── apple-touch-icon-57x57-precomposed.png │ ├── apple-touch-icon-72x72-precomposed.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── crossdomain.xml │ ├── css │ │ ├── app.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── h5bp.css │ │ └── style.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── humans.txt │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── libs │ │ │ ├── jquery-2.1.1.min.js │ │ │ ├── less-1.2.1.min.js │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ ├── main.js │ │ └── plugins.js │ └── robots.txt ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── _layouts │ │ └── base.html │ ├── allauth │ │ └── base.html │ ├── layout │ │ ├── home.html │ │ └── navbar.html │ └── user │ │ └── profile.html ├── urls.py └── views.py ├── manage.py ├── project_name ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local-dist.py │ └── test.py ├── urls.py └── wsgi.py ├── requirements.txt ├── requirements ├── local.txt └── production.txt └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/Vagrantfile -------------------------------------------------------------------------------- /db/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build-github.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/docs/build-github.zsh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/docs/make.bat -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/fabfile.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/install.sh -------------------------------------------------------------------------------- /install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/install_requirements.sh -------------------------------------------------------------------------------- /layout/__init__.py: -------------------------------------------------------------------------------- 1 | """Application base, containing global templates.""" 2 | -------------------------------------------------------------------------------- /layout/models.py: -------------------------------------------------------------------------------- 1 | """ Basic models, such as user profile """ 2 | -------------------------------------------------------------------------------- /layout/static/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /layout/static/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /layout/static/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /layout/static/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /layout/static/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /layout/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/apple-touch-icon.png -------------------------------------------------------------------------------- /layout/static/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/crossdomain.xml -------------------------------------------------------------------------------- /layout/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/css/app.css -------------------------------------------------------------------------------- /layout/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/css/bootstrap.css -------------------------------------------------------------------------------- /layout/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /layout/static/css/h5bp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/css/h5bp.css -------------------------------------------------------------------------------- /layout/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/css/style.css -------------------------------------------------------------------------------- /layout/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /layout/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /layout/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /layout/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /layout/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /layout/static/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/humans.txt -------------------------------------------------------------------------------- /layout/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /layout/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /layout/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/bootstrap.js -------------------------------------------------------------------------------- /layout/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /layout/static/js/libs/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/libs/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /layout/static/js/libs/less-1.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/libs/less-1.2.1.min.js -------------------------------------------------------------------------------- /layout/static/js/libs/modernizr-2.6.2-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/libs/modernizr-2.6.2-respond-1.1.0.min.js -------------------------------------------------------------------------------- /layout/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/main.js -------------------------------------------------------------------------------- /layout/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/static/js/plugins.js -------------------------------------------------------------------------------- /layout/static/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /layout/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/403.html -------------------------------------------------------------------------------- /layout/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/404.html -------------------------------------------------------------------------------- /layout/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/500.html -------------------------------------------------------------------------------- /layout/templates/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/_layouts/base.html -------------------------------------------------------------------------------- /layout/templates/allauth/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/allauth/base.html -------------------------------------------------------------------------------- /layout/templates/layout/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/layout/home.html -------------------------------------------------------------------------------- /layout/templates/layout/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/layout/navbar.html -------------------------------------------------------------------------------- /layout/templates/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/templates/user/profile.html -------------------------------------------------------------------------------- /layout/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/urls.py -------------------------------------------------------------------------------- /layout/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/layout/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/manage.py -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | """ {{ project_name }} """ 2 | -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/project_name/settings/__init__.py -------------------------------------------------------------------------------- /project_name/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/project_name/settings/base.py -------------------------------------------------------------------------------- /project_name/settings/local-dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/project_name/settings/local-dist.py -------------------------------------------------------------------------------- /project_name/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/project_name/settings/test.py -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/project_name/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-CodeLab/django-base-template/HEAD/test.py --------------------------------------------------------------------------------