├── .eslintrc.js ├── .flake8 ├── .gitignore ├── LICENSE.md ├── Pipfile ├── Pipfile.lock ├── README.md ├── blog ├── __init__.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── createblogdata.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170809_2209.py │ └── __init__.py ├── models.py ├── templates │ └── blog │ │ ├── _blog_tease.html │ │ ├── blog_index_page.html │ │ └── blog_page.html └── tests │ ├── __init__.py │ ├── factories.py │ └── test_models.py ├── client └── common │ ├── js │ └── common.js │ └── sass │ ├── base │ ├── _base.sass │ ├── _mixins.sass │ ├── _variables.sass │ └── mixins │ │ ├── _breakpoints.scss │ │ ├── _buttons.sass │ │ ├── _forms.sass │ │ ├── _links.sass │ │ ├── _lists.sass │ │ ├── _typography.sass │ │ └── _utilities.sass │ ├── blocks │ ├── _blockquote.sass │ ├── _captioned-media.sass │ ├── _heading.sass │ └── _responsive-object.sass │ └── common.sass ├── common ├── __init__.py ├── blocks.py ├── choices.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── createdevdata.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_footersettings_socialsharingseosettings.py │ ├── 0003_auto_20170905_1947.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── customimage.py │ ├── mixins.py │ ├── pages.py │ └── settings.py ├── templates │ └── common │ │ └── blocks │ │ ├── aligned_embed.html │ │ ├── aligned_image.html │ │ ├── blockquote.html │ │ ├── heading_1.html │ │ ├── heading_2.html │ │ ├── heading_3.html │ │ ├── list_block_columns.html │ │ ├── styled_text.html │ │ └── styled_text_full_bleed.html ├── templatetags │ ├── __init__.py │ └── common_tags.py ├── tests │ └── factories.py └── utils.py ├── dev-requirements.txt ├── home ├── __init__.py ├── management │ └── commands │ │ └── createhomepage.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_metadata_mixin_to_homepage.py │ └── __init__.py ├── models.py └── templates │ └── home │ └── home_page.html ├── manage.py ├── menus ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── templatetags │ ├── __init__.py │ └── get_menu.py ├── package.json ├── postcss.config.js ├── project_name ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ └── production.py ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base.html │ └── super.html ├── urls.py └── wsgi.py ├── requirements.txt ├── search ├── __init__.py ├── templates │ └── search │ │ └── search.html └── views.py ├── simple ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170809_2141.py │ └── __init__.py └── models.py └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude: .svn,CVS,.bzr,.hg,.git,__pycache,node_modules,devops,molecule,src 3 | ignore: E501, E266 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/README.md -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/apps.py -------------------------------------------------------------------------------- /blog/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/management/commands/createblogdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/management/commands/createblogdata.py -------------------------------------------------------------------------------- /blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /blog/migrations/0002_auto_20170809_2209.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/migrations/0002_auto_20170809_2209.py -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/models.py -------------------------------------------------------------------------------- /blog/templates/blog/_blog_tease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/templates/blog/_blog_tease.html -------------------------------------------------------------------------------- /blog/templates/blog/blog_index_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/templates/blog/blog_index_page.html -------------------------------------------------------------------------------- /blog/templates/blog/blog_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/templates/blog/blog_page.html -------------------------------------------------------------------------------- /blog/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/tests/factories.py -------------------------------------------------------------------------------- /blog/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/blog/tests/test_models.py -------------------------------------------------------------------------------- /client/common/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/js/common.js -------------------------------------------------------------------------------- /client/common/sass/base/_base.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/_base.sass -------------------------------------------------------------------------------- /client/common/sass/base/_mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/_mixins.sass -------------------------------------------------------------------------------- /client/common/sass/base/_variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/_variables.sass -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_buttons.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_buttons.sass -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_forms.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_forms.sass -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_links.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_links.sass -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_lists.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_lists.sass -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_typography.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_typography.sass -------------------------------------------------------------------------------- /client/common/sass/base/mixins/_utilities.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/base/mixins/_utilities.sass -------------------------------------------------------------------------------- /client/common/sass/blocks/_blockquote.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/blocks/_blockquote.sass -------------------------------------------------------------------------------- /client/common/sass/blocks/_captioned-media.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/blocks/_captioned-media.sass -------------------------------------------------------------------------------- /client/common/sass/blocks/_heading.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/blocks/_heading.sass -------------------------------------------------------------------------------- /client/common/sass/blocks/_responsive-object.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/blocks/_responsive-object.sass -------------------------------------------------------------------------------- /client/common/sass/common.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/client/common/sass/common.sass -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/blocks.py -------------------------------------------------------------------------------- /common/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/choices.py -------------------------------------------------------------------------------- /common/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/management/commands/createdevdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/management/commands/createdevdata.py -------------------------------------------------------------------------------- /common/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/migrations/0001_initial.py -------------------------------------------------------------------------------- /common/migrations/0002_footersettings_socialsharingseosettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/migrations/0002_footersettings_socialsharingseosettings.py -------------------------------------------------------------------------------- /common/migrations/0003_auto_20170905_1947.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/migrations/0003_auto_20170905_1947.py -------------------------------------------------------------------------------- /common/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/models/__init__.py -------------------------------------------------------------------------------- /common/models/customimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/models/customimage.py -------------------------------------------------------------------------------- /common/models/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/models/mixins.py -------------------------------------------------------------------------------- /common/models/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/models/pages.py -------------------------------------------------------------------------------- /common/models/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/models/settings.py -------------------------------------------------------------------------------- /common/templates/common/blocks/aligned_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/aligned_embed.html -------------------------------------------------------------------------------- /common/templates/common/blocks/aligned_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/aligned_image.html -------------------------------------------------------------------------------- /common/templates/common/blocks/blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/blockquote.html -------------------------------------------------------------------------------- /common/templates/common/blocks/heading_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/heading_1.html -------------------------------------------------------------------------------- /common/templates/common/blocks/heading_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/heading_2.html -------------------------------------------------------------------------------- /common/templates/common/blocks/heading_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/heading_3.html -------------------------------------------------------------------------------- /common/templates/common/blocks/list_block_columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/list_block_columns.html -------------------------------------------------------------------------------- /common/templates/common/blocks/styled_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/styled_text.html -------------------------------------------------------------------------------- /common/templates/common/blocks/styled_text_full_bleed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templates/common/blocks/styled_text_full_bleed.html -------------------------------------------------------------------------------- /common/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/templatetags/common_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/templatetags/common_tags.py -------------------------------------------------------------------------------- /common/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/tests/factories.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/common/utils.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | django-debug-toolbar==1.9 2 | -------------------------------------------------------------------------------- /home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/management/commands/createhomepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/home/management/commands/createhomepage.py -------------------------------------------------------------------------------- /home/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/home/migrations/0001_initial.py -------------------------------------------------------------------------------- /home/migrations/0002_add_metadata_mixin_to_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/home/migrations/0002_add_metadata_mixin_to_homepage.py -------------------------------------------------------------------------------- /home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/home/models.py -------------------------------------------------------------------------------- /home/templates/home/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/home/templates/home/home_page.html -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/manage.py -------------------------------------------------------------------------------- /menus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menus/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/menus/migrations/0001_initial.py -------------------------------------------------------------------------------- /menus/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menus/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/menus/models.py -------------------------------------------------------------------------------- /menus/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menus/templatetags/get_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/menus/templatetags/get_menu.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/settings/base.py -------------------------------------------------------------------------------- /project_name/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/settings/dev.py -------------------------------------------------------------------------------- /project_name/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/settings/production.py -------------------------------------------------------------------------------- /project_name/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/templates/403.html -------------------------------------------------------------------------------- /project_name/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/templates/404.html -------------------------------------------------------------------------------- /project_name/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/templates/500.html -------------------------------------------------------------------------------- /project_name/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/templates/base.html -------------------------------------------------------------------------------- /project_name/templates/super.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/templates/super.html -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/project_name/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/search/templates/search/search.html -------------------------------------------------------------------------------- /search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/search/views.py -------------------------------------------------------------------------------- /simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/simple/migrations/0001_initial.py -------------------------------------------------------------------------------- /simple/migrations/0002_auto_20170809_2141.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/simple/migrations/0002_auto_20170809_2141.py -------------------------------------------------------------------------------- /simple/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/simple/models.py -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raq929/wagtail-project-template/HEAD/webpack.config.js --------------------------------------------------------------------------------