├── __init__.py ├── djfrontend ├── templatetags │ ├── __init__.py │ └── settings.py ├── models.py ├── __init__.py ├── tests │ ├── __init__.py │ └── urls.py ├── static │ └── djfrontend │ │ ├── fonts │ │ ├── fontawesome │ │ │ └── 4.6.3 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ └── twbs │ │ │ └── 3.3.7 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ └── jquery │ │ │ └── jquery.dataTables │ │ │ └── 1.10.12 │ │ │ ├── sort_asc.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_asc_disabled.png │ │ │ └── sort_desc_disabled.png │ │ ├── js │ │ ├── twbs │ │ │ └── 3.3.7 │ │ │ │ ├── transition.js │ │ │ │ ├── alert.js │ │ │ │ ├── popover.js │ │ │ │ ├── button.js │ │ │ │ ├── tab.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── affix.js │ │ │ │ ├── collapse.js │ │ │ │ └── carousel.js │ │ └── jquery │ │ │ ├── jquery.scrollTo │ │ │ └── 2.1.2 │ │ │ │ ├── jquery.scrollTo.min.js │ │ │ │ └── jquery.scrollTo.js │ │ │ ├── jquery.formset │ │ │ └── 1.2.2 │ │ │ │ └── jquery.formset.min.js │ │ │ └── jquery.smooth-scroll │ │ │ └── 1.7.2 │ │ │ └── jquery.smooth-scroll.min.js │ │ └── css │ │ └── h5bp │ │ └── 5.3.0 │ │ └── h5bp.css ├── apps.py └── templates │ └── djfrontend │ └── base.html ├── setup.cfg ├── docs ├── source │ ├── road_map.rst │ ├── getting_started.rst │ ├── license.rst │ ├── template_blocks.rst │ ├── index.rst │ ├── optional_settings.rst │ ├── changelog.rst │ ├── granularity.rst │ └── conf.py ├── build │ ├── html │ │ ├── _sources │ │ │ ├── road_map.txt │ │ │ ├── getting_started.txt │ │ │ ├── license.txt │ │ │ ├── template_blocks.txt │ │ │ ├── index.txt │ │ │ ├── optional_settings.txt │ │ │ ├── changelog.txt │ │ │ └── granularity.txt │ │ ├── objects.inv │ │ ├── _static │ │ │ ├── up.png │ │ │ ├── down.png │ │ │ ├── file.png │ │ │ ├── plus.png │ │ │ ├── comment.png │ │ │ ├── minus.png │ │ │ ├── ajax-loader.gif │ │ │ ├── down-pressed.png │ │ │ ├── up-pressed.png │ │ │ ├── comment-bright.png │ │ │ ├── comment-close.png │ │ │ ├── pygments.css │ │ │ ├── default.css │ │ │ ├── sidebar.js │ │ │ └── doctools.js │ │ ├── .buildinfo │ │ ├── genindex.html │ │ ├── search.html │ │ ├── road_map.html │ │ ├── searchindex.js │ │ ├── license.html │ │ ├── getting_started.html │ │ ├── template_blocks.html │ │ └── granularity.html │ └── doctrees │ │ ├── index.doctree │ │ ├── license.doctree │ │ ├── changelog.doctree │ │ ├── road_map.doctree │ │ ├── environment.pickle │ │ ├── granularity.doctree │ │ ├── template_tags.doctree │ │ ├── getting_started.doctree │ │ ├── optional_settings.doctree │ │ └── template_blocks.doctree └── Makefile ├── MANIFEST.in ├── .gitignore ├── LICENSE ├── lib ├── modernizr │ └── LICENSE-MIT └── jquery │ ├── jquery.smooth-scroll │ └── LICENSE-MIT │ ├── MIT-LICENSE │ ├── jqueryui │ └── MIT-LICENSE │ └── jquery.dataTables │ └── LICENSE-BSD.txt ├── .travis.yml ├── setup.py ├── run_tests.py └── README.rst /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djfrontend/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djfrontend/models.py: -------------------------------------------------------------------------------- 1 | # Intentionally left blank. -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /docs/source/road_map.rst: -------------------------------------------------------------------------------- 1 | Road Map 2 | ============== -------------------------------------------------------------------------------- /docs/build/html/_sources/road_map.txt: -------------------------------------------------------------------------------- 1 | Road Map 2 | ============== -------------------------------------------------------------------------------- /djfrontend/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'djfrontend.apps.DjangoFrontendConfig' 2 | -------------------------------------------------------------------------------- /docs/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/objects.inv -------------------------------------------------------------------------------- /docs/build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/up.png -------------------------------------------------------------------------------- /djfrontend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from djfrontend.templatetags import * 2 | from djfrontend.tests.tests_templatetags import * 3 | -------------------------------------------------------------------------------- /docs/build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/down.png -------------------------------------------------------------------------------- /docs/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/license.doctree -------------------------------------------------------------------------------- /docs/build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/build/doctrees/changelog.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/changelog.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/road_map.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/road_map.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/doctrees/granularity.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/granularity.doctree -------------------------------------------------------------------------------- /docs/build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | include README.rst 3 | recursive-include djfrontend * 4 | recursive-include docs * 5 | recursive-include lib * 6 | -------------------------------------------------------------------------------- /docs/build/doctrees/template_tags.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/template_tags.doctree -------------------------------------------------------------------------------- /docs/build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/html/_static/comment-close.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # System files 2 | .DS_Store 3 | build/ 4 | dist/ 5 | django_frontend.egg-info/ 6 | 7 | # Python 8 | *.pyc 9 | 10 | /.idea 11 | -------------------------------------------------------------------------------- /docs/build/doctrees/getting_started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/getting_started.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/optional_settings.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/optional_settings.doctree -------------------------------------------------------------------------------- /docs/build/doctrees/template_blocks.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/docs/build/doctrees/template_blocks.doctree -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/FontAwesome.otf -------------------------------------------------------------------------------- /djfrontend/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DjangoFrontendConfig(AppConfig): 5 | name = 'djfrontend' 6 | label = 'djfrontend' 7 | verbose_name = 'Django Frontend' 8 | -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.eot -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.woff -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/fontawesome/4.6.3/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/fonts/twbs/3.3.7/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_asc.png -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_both.png -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_desc.png -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_asc_disabled.png -------------------------------------------------------------------------------- /djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonfaustman/django-frontend/HEAD/djfrontend/static/djfrontend/img/jquery/jquery.dataTables/1.10.12/sort_desc_disabled.png -------------------------------------------------------------------------------- /docs/build/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: b6096eb604a142a2c21aaa7d813edaae 4 | tags: a205e9ed8462ae86fdd2f73488852ba9 5 | -------------------------------------------------------------------------------- /djfrontend/tests/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, url 2 | from django.views.generic import TemplateView 3 | from django.contrib.staticfiles.urls import staticfiles_urlpatterns 4 | 5 | urlpatterns = patterns('', 6 | url(r'^$', TemplateView.as_view(template_name="djfrontend/base.html")), 7 | ) 8 | 9 | urlpatterns += staticfiles_urlpatterns() -------------------------------------------------------------------------------- /djfrontend/templatetags/settings.py: -------------------------------------------------------------------------------- 1 | # Current defaults 2 | DJFRONTEND_H5BP_HTML_DEFAULT = 'en' 3 | DJFRONTEND_H5BP_CSS_DEFAULT = '5.3.0' 4 | DJFRONTEND_NORMALIZE_DEFAULT = '4.2.0' 5 | DJFRONTEND_FONTAWESOME_DEFAULT = '4.6.3' 6 | DJFRONTEND_MODERNIZR_DEFAULT = '2.8.3' 7 | DJFRONTEND_JQUERY_DEFAULT = '1.12.4' 8 | DJFRONTEND_JQUERYUI_DEFAULT = '1.11.4' 9 | DJFRONTEND_JQUERY_DATATABLES_VERSION_DEFAULT = '1.10.12' 10 | DJFRONTEND_JQUERY_FORMSET_DEFAULT = '1.2.2' 11 | DJFRONTEND_JQUERY_SCROLLTO_DEFAULT = '2.1.2' 12 | DJFRONTEND_JQUERY_SMOOTHSCROLL_DEFAULT = '1.7.2' 13 | DJFRONTEND_TWBS_VERSION_DEFAULT = '3.3.7' 14 | -------------------------------------------------------------------------------- /docs/source/getting_started.rst: -------------------------------------------------------------------------------- 1 | Getting Started 2 | ================ 3 | 4 | Install 5 | -------- 6 | 1. install `django-frontend` (pip install, add to your requirements files, etc.) 7 | 2. add `'djfrontend'` to your INSTALLED_APPS 8 | 3. make sure `'django.contrib.staticfiles'` is also in your INSTALLED_APPS 9 | 10 | Extend 11 | ------- 12 | Extend djfrontend's base template in your template(s) 13 | :: 14 | 15 | {% extends 'djfrontend/base.html' %} 16 | 17 | Load 18 | ----- 19 | Load all the djfrontend tags if you want to add or change the template's defaults. 20 | :: 21 | 22 | {% load djfrontend %} -------------------------------------------------------------------------------- /docs/build/html/_sources/getting_started.txt: -------------------------------------------------------------------------------- 1 | Getting Started 2 | ================ 3 | 4 | Install 5 | -------- 6 | 1. install `django-frontend` (pip install, add to your requirements files, etc.) 7 | 2. add `'djfrontend'` to your INSTALLED_APPS 8 | 3. make sure `'django.contrib.staticfiles'` is also in your INSTALLED_APPS 9 | 10 | Extend 11 | ------- 12 | Extend djfrontend's base template in your template(s) 13 | :: 14 | 15 | {% extends 'djfrontend/base.html' %} 16 | 17 | Load 18 | ----- 19 | Load all the djfrontend tags if you want to add or change the template's defaults. 20 | :: 21 | 22 | {% load djfrontend %} -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- 1 | License 2 | ========= 3 | MIT License 4 | 5 | Component Specific Licenses 6 | ---------------------------- 7 | * HTML5 Boilerplate: MIT License 8 | * Modernizr: MIT License 9 | * normalize.css: MIT License 10 | * jQuery: MIT License 11 | * jQuery UI: MIT License 12 | * jQuery DataTables: Dual GPL v2.0 and BSD License 13 | * jQuery Dynamic Formset: BSD New License 14 | * jQuery ScrollTo: Dual MIT and GPL License 15 | * jQuery Smooth Scroll: MIT License 16 | * Twitter Bootstrap: Apache License, Version 2.0 17 | * iOS-Orientationchange-Fix: MIT/GPL v2.0 License 18 | * Font Awesome: SIL OFL 1.1, MIT License -------------------------------------------------------------------------------- /docs/build/html/_sources/license.txt: -------------------------------------------------------------------------------- 1 | License 2 | ========= 3 | MIT License 4 | 5 | Component Specific Licenses 6 | ---------------------------- 7 | * HTML5 Boilerplate: MIT License 8 | * Modernizr: MIT License 9 | * normalize.css: MIT License 10 | * jQuery: MIT License 11 | * jQuery UI: MIT License 12 | * jQuery DataTables: Dual GPL v2.0 and BSD License 13 | * jQuery Dynamic Formset: BSD New License 14 | * jQuery ScrollTo: Dual MIT and GPL License 15 | * jQuery Smooth Scroll: MIT License 16 | * Twitter Bootstrap: Apache License, Version 2.0 17 | * iOS-Orientationchange-Fix: MIT/GPL v2.0 License 18 | * Font Awesome: SIL OFL 1.1, MIT License -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 Jon Faustman 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE -------------------------------------------------------------------------------- /lib/modernizr/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009–2013 2 | Permission is hereby granted, free of charge, to any person obtaining a copy 3 | of this software and associated documentation files (the "Software"), to deal 4 | in the Software without restriction, including without limitation the rights 5 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 6 | copies of the Software, and to permit persons to whom the Software is 7 | furnished to do so, subject to the following conditions: 8 | The above copyright notice and this permission notice shall be included in 9 | all copies or substantial portions of the Software. 10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 11 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 12 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 13 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 14 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 15 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 16 | THE SOFTWARE -------------------------------------------------------------------------------- /lib/jquery/jquery.smooth-scroll/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person 2 | obtaining a copy of this software and associated documentation 3 | files (the "Software"), to deal in the Software without 4 | restriction, including without limitation the rights to use, 5 | copy, modify, merge, publish, distribute, sublicense, and/or sell 6 | copies of the Software, and to permit persons to whom the 7 | Software is furnished to do so, subject to the following 8 | conditions: 9 | 10 | The above copyright notice and this permission notice shall be 11 | included in all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 14 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 15 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 16 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 17 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 18 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 | OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | 3 | python: 4 | - "2.6" 5 | - "2.7" 6 | - "3.3" 7 | - "3.4" 8 | 9 | env: 10 | - DJANGO=1.9.8 11 | - DJANGO=1.9.7 12 | - DJANGO=1.8.14 13 | - DJANGO=1.8.13 14 | - DJANGO=1.7.11 15 | - DJANGO=1.7.10 16 | - DJANGO=1.6.11 17 | - DJANGO=1.6.10 18 | 19 | matrix: 20 | exclude: 21 | - python: "3.3" 22 | env: DJANGO=1.9.8 23 | - python: "3.3" 24 | env: DJANGO=1.9.7 25 | - python: "2.6" 26 | env: DJANGO=1.9.8 27 | - python: "2.6" 28 | env: DJANGO=1.9.7 29 | - python: "2.6" 30 | env: DJANGO=1.8.14 31 | - python: "2.6" 32 | env: DJANGO=1.8.13 33 | - python: "2.6" 34 | env: DJANGO=1.7.11 35 | - python: "2.6" 36 | env: DJANGO=1.7.10 37 | 38 | install: 39 | - pip install Django==$DJANGO 40 | - pip install -e . 41 | 42 | script: 43 | - python run_tests.py 44 | 45 | notifications: 46 | email: 47 | recipients: 48 | - jon@faustman.org 49 | on_success: never 50 | on_failure: always 51 | -------------------------------------------------------------------------------- /lib/jquery/MIT-LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /docs/source/template_blocks.rst: -------------------------------------------------------------------------------- 1 | Template blocks 2 | ================ 3 | Use the included template blocks to suit your needs. 4 | 5 | html 6 | ----- 7 | Override the HTML doctype, or use in conjunction with {% djfrontend_h5bp_html '' %} to change the HTML lang attribute. 8 | 9 | title 10 | ------ 11 | Add your application specific title to the title tag. 12 | 13 | meta_viewport 14 | -------------- 15 | Override the default meta viewport's content attribute. 16 | 17 | meta_description 18 | ------------------ 19 | Add your application specific information to the meta description. 20 | 21 | head_css 22 | ---------- 23 | Parent CSS block to override or extend the included CSS files. 24 | 25 | head_js 26 | --------- 27 | Override or extend with JavaScript files that need to loaded in the head. 28 | 29 | body_id 30 | -------- 31 | Add an id to the body if needed. 32 | 33 | body_class 34 | ------------ 35 | Add class(es) to the body if needed. 36 | 37 | body_content 38 | -------------- 39 | Override the Internet Explorer warning, and/or extend with the main content from your application. 40 | 41 | body_js 42 | --------- 43 | Override or extend the included JavaScript files with any file that does not need to be loaded in the head. -------------------------------------------------------------------------------- /docs/build/html/_sources/template_blocks.txt: -------------------------------------------------------------------------------- 1 | Template blocks 2 | ================ 3 | Use the included template blocks to suit your needs. 4 | 5 | html 6 | ----- 7 | Override the HTML doctype, or use in conjunction with {% djfrontend_h5bp_html '' %} to change the HTML lang attribute. 8 | 9 | title 10 | ------ 11 | Add your application specific title to the title tag. 12 | 13 | meta_viewport 14 | -------------- 15 | Override the default meta viewport's content attribute. 16 | 17 | meta_description 18 | ------------------ 19 | Add your application specific information to the meta description. 20 | 21 | head_css 22 | ---------- 23 | Parent CSS block to override or extend the included CSS files. 24 | 25 | head_js 26 | --------- 27 | Override or extend with JavaScript files that need to loaded in the head. 28 | 29 | body_id 30 | -------- 31 | Add an id to the body if needed. 32 | 33 | body_class 34 | ------------ 35 | Add class(es) to the body if needed. 36 | 37 | body_content 38 | -------------- 39 | Override the Internet Explorer warning, and/or extend with the main content from your application. 40 | 41 | body_js 42 | --------- 43 | Override or extend the included JavaScript files with any file that does not need to be loaded in the head. -------------------------------------------------------------------------------- /djfrontend/templates/djfrontend/base.html: -------------------------------------------------------------------------------- 1 | {% load djfrontend %} 2 | {% block html %} 3 | 4 | {% djfrontend_h5bp_html %} 5 | {% endblock html %} 6 |
7 | {% block meta %} 8 | 9 | 10 |