├── .babelrc.js ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .flake8 ├── .git-blame-ignore-revs ├── .github ├── pull_request_template.md └── workflows │ ├── flightpath.yml │ ├── flightpath_status_check.yml │ ├── gh-pages.yml │ └── test.yml ├── .gitignore ├── .isort.cfg ├── .nvmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.toml ├── .secrets.baseline ├── .stylelintrc.js ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── app.json ├── browsersync.config.js ├── cloudflare └── workers.js ├── docker-compose.yml ├── docker ├── Procfile ├── bashrc.sh └── docker-compose-frontend.yml ├── docs ├── anonymised-data.md ├── continuous-integration.md ├── deployment.md ├── front-end │ ├── placeholder-images.md │ └── tooling.md ├── images │ └── docker-diagram.png ├── index.md ├── infrastructure.md ├── page-models.md ├── project-conventions.md ├── upgrading.md └── vscode-dev-container.md ├── fabfile.py ├── gunicorn-conf.py ├── heroku.yml ├── manage.py ├── mkdocs.yml ├── package.json ├── poetry.lock ├── public └── googlebfad87a36358211e.html ├── pyproject.toml ├── setup.cfg ├── tbx ├── __init__.py ├── blog │ ├── __init__.py │ ├── feeds.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_move_people_into_new_app.py │ │ ├── 0003_blogpageauthor_author.py │ │ ├── 0004_populate_blogpageauthor_author.py │ │ ├── 0005_remove_blogpageauthor_author_person_page.py │ │ ├── 0006_remove_blogpage_author_left.py │ │ ├── 0007_rename_related_author_to_authors.py │ │ ├── 0008_remove_blogpage_body.py │ │ ├── 0009_remove_blogindexpage_show_in_play_menu.py │ │ ├── 0010_rename_streamfield_to_body.py │ │ ├── 0011_helptext.py │ │ ├── 0012_remove_blogpage_marketing_only.py │ │ ├── 0013_blogpage_listing_summary.py │ │ ├── 0014_remove_blogpage_intro.py │ │ ├── 0015_auto_20190123_1133.py │ │ ├── 0016_blogpage_related_services.py │ │ ├── 0017_map_tags_to_related_services.py │ │ ├── 0018_remove_blogpage_colour.py │ │ ├── 0019_blogpage_body_word_count.py │ │ ├── 0020_update_streamblock_templates.py │ │ ├── 0021_update_streamblock_templates.py │ │ ├── 0022_update_image_model.py │ │ ├── 0023_create_external_story_block.py │ │ ├── 0024_alter_blogpage_body.py │ │ ├── 0025_call_to_action.py │ │ ├── 0026_add_video_block.py │ │ ├── 0027_add_mailchimp_block.py │ │ ├── 0028_add_social_fields_to_all_page_types.py │ │ ├── 0029_change_minimum_number_for_key_points.py │ │ └── __init__.py │ └── models.py ├── core │ ├── __init__.py │ ├── api.py │ ├── apps.py │ ├── blocks.py │ ├── context_processors.py │ ├── fields.py │ ├── management │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── test_sentry.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_workpage_streamfield.py │ │ ├── 0003_auto_20150313_1717.py │ │ ├── 0004_auto_20150325_1627.py │ │ ├── 0005_auto_20150325_1631.py │ │ ├── 0006_auto_20150326_1023.py │ │ ├── 0007_auto_20150326_1142.py │ │ ├── 0008_wagtailimage_verbosename_changes.py │ │ ├── 0009_auto_20150427_1230.py │ │ ├── 0010_auto_20150611_1528.py │ │ ├── 0011_auto_20150612_1126.py │ │ ├── 0012_auto_20150703_1543.py │ │ ├── 0013_auto_20150720_1154.py │ │ ├── 0014_workpage_show_in_play_menu.py │ │ ├── 0015_auto_20151105_1715.py │ │ ├── 0015_auto_20160205_1536.py │ │ ├── 0015_auto_20160218_1201.py │ │ ├── 0016_auto_20160205_1724.py │ │ ├── 0016_reasontojoin_subtitle.py │ │ ├── 0017_merge.py │ │ ├── 0018_auto_20160222_1029.py │ │ ├── 0019_googleadgrantspage_to_address.py │ │ ├── 0020_auto_20160317_0955.py │ │ ├── 0021_auto_20160412_1508.py │ │ ├── 0021_merge.py │ │ ├── 0022_signupformpage_signupformpagebullet_signupformpagelogo_signupformpagequote_signupformpageresponse.py │ │ ├── 0023_marketinglandingpage_marketinglandingpagerelatedlink.py │ │ ├── 0023_merge.py │ │ ├── 0024_auto_20160321_1808.py │ │ ├── 0024_remove_reasontojoin_subtitle.py │ │ ├── 0025_marketinglandingpagepageclients.py │ │ ├── 0026_merge.py │ │ ├── 0027_auto_20160603_1718.py │ │ ├── 0027_homepageclients.py │ │ ├── 0027_marketinglandingpagerelatedlink_email_link.py │ │ ├── 0028_auto_20160531_1640.py │ │ ├── 0028_auto_20160617_1120.py │ │ ├── 0029_auto_20160601_1630.py │ │ ├── 0029_homepagehero.py │ │ ├── 0030_auto_20160617_1146.py │ │ ├── 0030_merge.py │ │ ├── 0031_blogpage_canonical_url.py │ │ ├── 0031_blogpage_homepage_color.py │ │ ├── 0032_jobindexpagejob_job_intro.py │ │ ├── 0033_homepagehero_colour.py │ │ ├── 0034_auto_20160617_1609.py │ │ ├── 0035_auto_20160617_1631.py │ │ ├── 0036_auto_20160617_1650.py │ │ ├── 0037_auto_20160701_1307.py │ │ ├── 0038_merge.py │ │ ├── 0039_auto_20160706_1716.py │ │ ├── 0040_auto_20160707_1218.py │ │ ├── 0041_auto_20160707_1223.py │ │ ├── 0042_aboutpage_aboutpageservice.py │ │ ├── 0043_auto_20160707_1648.py │ │ ├── 0044_aboutpage_heading.py │ │ ├── 0045_auto_20160708_1127.py │ │ ├── 0046_auto_20160718_1554.py │ │ ├── 0047_homepagehero_text.py │ │ ├── 0048_personpage_is_senior.py │ │ ├── 0049_auto_20160819_1421.py │ │ ├── 0050_auto_20160826_1123.py │ │ ├── 0051_mainmenu_mainmenuitem.py │ │ ├── 0052_merge.py │ │ ├── 0053_jobindexpage_reasons_intro.py │ │ ├── 0054_auto_20160826_1657.py │ │ ├── 0055_auto_20160830_1705.py │ │ ├── 0056_workpage_visit_the_site.py │ │ ├── 0057_auto_20160831_1135.py │ │ ├── 0058_auto_20160831_1239.py │ │ ├── 0059_auto_20160831_1243.py │ │ ├── 0060_auto_20160901_1658.py │ │ ├── 0061_auto_20160902_1609.py │ │ ├── 0062_auto_20160905_1151.py │ │ ├── 0063_auto_20160906_0949.py │ │ ├── 0064_aboutpagerelatedlinkbutton.py │ │ ├── 0065_auto_20160906_1449.py │ │ ├── 0066_auto_20160906_1624.py │ │ ├── 0067_auto_20160906_1651.py │ │ ├── 0068_auto_20160909_1100.py │ │ ├── 0068_torchboximage_collection.py │ │ ├── 0069_auto_20160915_1023.py │ │ ├── 0070_auto_20160915_1031.py │ │ ├── 0071_auto_rename_global_settings_fields.py │ │ ├── 0071_merge.py │ │ ├── 0072_auto_20161026_0959.py │ │ ├── 0072_merge.py │ │ ├── 0073_auto_20161026_1023.py │ │ ├── 0074_servicepage.py │ │ ├── 0075_auto_20161124_0845.py │ │ ├── 0076_merge.py │ │ ├── 0077_auto_20161129_1011.py │ │ ├── 0078_auto_20161129_1014.py │ │ ├── 0079_auto_20161129_1640.py │ │ ├── 0080_auto_20161129_1640.py │ │ ├── 0081_servicespageservice_link.py │ │ ├── 0082_auto_20170112_1611.py │ │ ├── 0083_homepage_remove_unused_field.py │ │ ├── 0084_homepage_add_editable_strapline.py │ │ ├── 0085_add_filter_spec_field.py │ │ ├── 0086_fill_filter_spec_field.py │ │ ├── 0087_auto_20170117_1643.py │ │ ├── 0088_fix_wrong_parameter_in_page_chooser_block.py │ │ ├── 0089_add_subtitle_into_step.py │ │ ├── 0090_servicepage_add_sign_up_form_page.py │ │ ├── 0091_auto_20170201_1043.py │ │ ├── 0092_servicepage_add_logos.py │ │ ├── 0093_auto_20170315_1306.py │ │ ├── 0093_wagtail19_upgrade.py │ │ ├── 0094_auto_20170908_1245.py │ │ ├── 0094_merge.py │ │ ├── 0095_set_blogpages_show_in_menus_true.py │ │ ├── 0096_revert_pr97.py │ │ ├── 0097_merge_20180319_1455.py │ │ ├── 0098_auto_20180320_1138.py │ │ ├── 0099_auto_20180320_1631.py │ │ ├── 0100_auto_20180830_1056.py │ │ ├── 0101_auto_20180912_1622.py │ │ ├── 0101_merge_20180830_1109.py │ │ ├── 0102_auto_20180830_1109.py │ │ ├── 0102_workpage_feed_image.py │ │ ├── 0103_merge_20180918_1304.py │ │ ├── 0104_merge_20180928_1009.py │ │ ├── 0105_torchboximage_file_hash.py │ │ ├── 0107_move_services_into_new_app.py │ │ ├── 0108_move_work_into_new_app.py │ │ ├── 0109_move_blog_into_new_app.py │ │ ├── 0110_rename_blogpagetaglist_to_tag.py │ │ ├── 0111_move_sign_up_form_into_new_app.py │ │ ├── 0112_move_people_into_new_app.py │ │ ├── 0113_move_people_into_new_app_2.py │ │ ├── 0114_remove_standardpage_show_in_play_menu.py │ │ ├── 0115_delete_tshirt_page.py │ │ ├── 0116_delete_marketing_landing_page.py │ │ ├── 0117_remove_standardpage_middle_break.py │ │ ├── 0118_remove_standardpage_intro_and_body.py │ │ ├── 0119_auto_20190123_1133.py │ │ ├── 0120_remove_contactpage.py │ │ ├── 0121_remove_unused_standardpage_fields.py │ │ ├── 0122_remove_unused_jobindexpage_fields.py │ │ ├── 0123_auto_20190216_1655.py │ │ ├── 0124_auto_20190216_1657.py │ │ ├── 0125_auto_20190216_1713.py │ │ ├── 0126_jobindexpage_jobs_xml_feed.py │ │ ├── 0127_jobindexpage_intro.py │ │ ├── 0128_auto_20201007_1415.py │ │ ├── 0129_auto_20201007_1514.py │ │ ├── 0130_socialmediasettings.py │ │ ├── 0131_update_streamblock_templates.py │ │ ├── 0132_update_streamblock_templates.py │ │ ├── 0133_remove_aboutpage_and_related_models.py │ │ ├── 0134_remove_googleadgrantspage_and_related_models.py │ │ ├── 0135_auto_20210728_1218.py │ │ ├── 0136_auto_20210728_1356.py │ │ ├── 0137_auto_20210802_1445.py │ │ ├── 0138_auto_20210802_1540.py │ │ ├── 0139_homepage_featured_posts_and_hero_image.py │ │ ├── 0140_update_image_model.py │ │ ├── 0141_delete_old_image_models.py │ │ ├── 0142_create_external_story_block.py │ │ ├── 0143_auto_20220422_1515.py │ │ ├── 0144_standardpage_additional_content.py │ │ ├── 0145_alter_standardpage_additional_content.py │ │ ├── 0146_alter_standardpage_additional_content.py │ │ ├── 0147_call_to_action.py │ │ ├── 0147_cleanup_old_database_schema_and_tables.py │ │ ├── 0148_merge_20230626_1217.py │ │ ├── 0149_add_video_block.py │ │ ├── 0150_add_mailchimp_block.py │ │ ├── 0151_homepage_hero_images.py │ │ ├── 0152_add_social_fields_to_all_page_types.py │ │ ├── 0153_change_minimum_number_for_key_points.py │ │ ├── 0154_alter_socialmediasettings_site_name.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── security.txt │ ├── templatetags │ │ ├── __init__.py │ │ ├── reading_time_tags.py │ │ ├── torchbox_tags.py │ │ └── util_tags.py │ ├── tests.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── migrations.py │ │ ├── models.py │ │ ├── scripts │ │ │ ├── run_flightpath.py │ │ │ └── run_flightpath_status_check.py │ │ └── views.py │ ├── views.py │ └── wagtail_hooks.py ├── courses │ ├── __init__.py │ ├── blocks.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_adds_course_landing_page_fields.py │ │ ├── 0003_adds_related_course_pages.py │ │ └── __init__.py │ └── models.py ├── events │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210623_1428.py │ │ ├── 0003_call_to_action.py │ │ ├── 0004_add_social_fields_to_all_page_types.py │ │ ├── 0005_change_minimum_number_for_key_points.py │ │ └── __init__.py │ └── models.py ├── images │ ├── __init__.py │ ├── apps.py │ ├── factories.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_copy_custom_images.py │ │ ├── 0003_alter_customimage_file_hash.py │ │ ├── 0004_wagtail42_images.py │ │ ├── 0005_alter_rendition_file.py │ │ └── __init__.py │ └── models.py ├── impact_reports │ ├── __init__.py │ ├── apps.py │ ├── blocks.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0001_squashed_0003_alter_impactreportpage_body.py │ │ ├── 0002_alter_impactreportpage_hero_image.py │ │ ├── 0002_remove_diagonal_image_grid_from_impact_report.py │ │ ├── 0003_add_small_image_with_text_to_impact_report.py │ │ ├── 0003_alter_impactreportpage_body.py │ │ ├── 0004_add_instagram_gallery_to_imact_report.py │ │ └── __init__.py │ └── models.py ├── navigation │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_navigationsettings_footer_teasers.py │ │ ├── 0003_auto_20210415_1145.py │ │ ├── 0004_navigationsettings_footer_top_links.py │ │ ├── 0005_auto_20210802_1540.py │ │ ├── 0006_auto_20220422_1515.py │ │ ├── 0007_navigationsettings_footer_logos.py │ │ ├── 0008_alter_navigationsettings_footer_logos.py │ │ ├── 0009_add_externallink_to_linkblock_and_remove_footer_top_links_from_navigationsettings.py │ │ ├── 0010_remove_navigationsettings_footer_teasers.py │ │ └── __init__.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── navigation_tags.py │ └── tests │ │ ├── __init__.py │ │ └── test_link_block.py ├── people │ ├── __init__.py │ ├── blocks.py │ ├── factories.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_author.py │ │ ├── 0003_populate_authors.py │ │ ├── 0004_auto_20190123_1133.py │ │ ├── 0005_contact.py │ │ ├── 0006_person_index_page_strapline.py │ │ ├── 0007_culturepage_culturepagelink.py │ │ ├── 0008_personpage_short_intro.py │ │ ├── 0009_personpage_alt_short_intro.py │ │ ├── 0010_contact_default_contact.py │ │ ├── 0011_auto_20190216_1748.py │ │ ├── 0012_auto_20190316_1641.py │ │ ├── 0013_culturepage_strapline_visible.py │ │ ├── 0014_contactreasonslist_is_default_not_unique.py │ │ ├── 0015_update_streamblock_templates.py │ │ ├── 0016_delete_unused_fields.py │ │ ├── 0017_update_streamblock_templates.py │ │ ├── 0018_update_contact.py │ │ ├── 0019_add_key_points_culture_model.py │ │ ├── 0019_valuespage.py │ │ ├── 0020_culturepagekeypoint.py │ │ ├── 0020_valuespagevalue.py │ │ ├── 0021_rename_benefits_on_culturepage_model_.py │ │ ├── 0021_valuespagevalue_value_image.py │ │ ├── 0022_auto_20210326_1202.py │ │ ├── 0022_auto_20210412_1042.py │ │ ├── 0022_culturepage_featured_blogs.py │ │ ├── 0023_auto_20210412_1147.py │ │ ├── 0023_merge_20210330_1437.py │ │ ├── 0024_auto_20210412_1428.py │ │ ├── 0024_auto_20210416_1406.py │ │ ├── 0025_auto_20210505_1057.py │ │ ├── 0026_culturepage_instagram_posts.py │ │ ├── 0027_merge_20210603_1719.py │ │ ├── 0028_auto_20210604_1234.py │ │ ├── 0029_auto_20210728_1109.py │ │ ├── 0030_update_image_model.py │ │ ├── 0031_auto_20220422_1515.py │ │ ├── 0032_alter_contact_phone_number.py │ │ ├── 0033_call_to_action.py │ │ ├── 0034_add_social_fields_to_all_page_types.py │ │ ├── 0035_change_minimum_number_for_key_points.py │ │ └── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ └── test_factories.py ├── project_styleguide │ ├── __init__.py │ ├── apps.py │ ├── forms.py │ ├── templates │ │ └── patterns │ │ │ ├── _pattern_library_only │ │ │ ├── README.md │ │ │ ├── example_form.html │ │ │ └── streamfield │ │ │ │ └── story_container.html │ │ │ ├── atoms │ │ │ ├── animated-characters │ │ │ │ ├── man.html │ │ │ │ ├── wagtail.html │ │ │ │ └── women.html │ │ │ ├── badge │ │ │ │ ├── badge.html │ │ │ │ └── badge.yaml │ │ │ ├── icons │ │ │ │ └── icon.html │ │ │ ├── instagram-post │ │ │ │ ├── instagram-post.html │ │ │ │ └── instagram-post.yaml │ │ │ ├── introduction │ │ │ │ ├── introduction.html │ │ │ │ └── introduction.yaml │ │ │ ├── logo │ │ │ │ └── logo.html │ │ │ ├── menu-button │ │ │ │ └── menu-button.html │ │ │ ├── quote-slide │ │ │ │ ├── quote-slide.html │ │ │ │ └── quote-slide.yaml │ │ │ ├── section-title │ │ │ │ ├── section-title.html │ │ │ │ └── section-title.yaml │ │ │ ├── see-more │ │ │ │ ├── see-more.html │ │ │ │ └── see-more.yaml │ │ │ ├── skip-link │ │ │ │ └── skip-link.html │ │ │ ├── sprites │ │ │ │ ├── sprites-preview.html │ │ │ │ ├── sprites-preview.yaml │ │ │ │ └── sprites.html │ │ │ └── tag │ │ │ │ ├── tag.html │ │ │ │ └── tag.yaml │ │ │ ├── base.html │ │ │ ├── base_page.html │ │ │ ├── molecules │ │ │ ├── author │ │ │ │ ├── author.html │ │ │ │ └── author.yaml │ │ │ ├── blog-item │ │ │ │ ├── blog-item.html │ │ │ │ └── blog-item.yaml │ │ │ ├── card │ │ │ │ ├── card.html │ │ │ │ └── card.yaml │ │ │ ├── contact-slim │ │ │ │ └── contact-slim.html │ │ │ ├── cookie-message │ │ │ │ └── cookie-message.html │ │ │ ├── course-grid │ │ │ │ └── course-grid.html │ │ │ ├── email-signup │ │ │ │ ├── email-signup.html │ │ │ │ └── email-signup.yaml │ │ │ ├── event-item │ │ │ │ ├── event-item.html │ │ │ │ └── event-item.yaml │ │ │ ├── help-block │ │ │ │ ├── help-block.html │ │ │ │ └── help-block.yaml │ │ │ ├── hero │ │ │ │ ├── hero--full-screen.html │ │ │ │ ├── hero--full-screen.yaml │ │ │ │ ├── hero--proposition.html │ │ │ │ ├── hero--proposition.yaml │ │ │ │ ├── hero--service.html │ │ │ │ ├── hero--service.yaml │ │ │ │ ├── hero.html │ │ │ │ ├── hero.yaml │ │ │ │ └── report_hero.html │ │ │ ├── in-page-nav │ │ │ │ ├── in-page-nav--service.html │ │ │ │ ├── in-page-nav--service.yaml │ │ │ │ ├── in-page-nav.html │ │ │ │ └── in-page-nav.yaml │ │ │ ├── job-item │ │ │ │ ├── job-item.html │ │ │ │ └── job-item.yaml │ │ │ ├── list-item │ │ │ │ ├── list-item.html │ │ │ │ └── list-item.yaml │ │ │ ├── locations │ │ │ │ └── locations.html │ │ │ ├── navigation │ │ │ │ ├── footer-links.html │ │ │ │ ├── footer-links.yaml │ │ │ │ ├── footer-top-links.yaml │ │ │ │ ├── mobile-nav.html │ │ │ │ ├── mobile-nav.yaml │ │ │ │ ├── primary-nav.html │ │ │ │ └── primary-nav.yaml │ │ │ ├── process-item │ │ │ │ ├── process-item.html │ │ │ │ └── process-item.yaml │ │ │ ├── quote-slider │ │ │ │ ├── quote-slider.html │ │ │ │ └── quote-slider.yaml │ │ │ ├── related-item │ │ │ │ ├── related-item.html │ │ │ │ └── related-item.yaml │ │ │ ├── streamfield │ │ │ │ ├── blocks │ │ │ │ │ ├── aligned_image_block.html │ │ │ │ │ ├── aligned_image_block.yaml │ │ │ │ │ ├── bustout_block.html │ │ │ │ │ ├── bustout_block.yaml │ │ │ │ │ ├── case_studies_section.html │ │ │ │ │ ├── case_studies_section.yaml │ │ │ │ │ ├── client-logo-block.html │ │ │ │ │ ├── client-logo-block.yaml │ │ │ │ │ ├── course_outline_block.html │ │ │ │ │ ├── course_outline_block.yaml │ │ │ │ │ ├── cta.html │ │ │ │ │ ├── cta.yaml │ │ │ │ │ ├── embed_block.html │ │ │ │ │ ├── embed_block.yaml │ │ │ │ │ ├── embed_plus_cta_block.html │ │ │ │ │ ├── embed_plus_cta_block.yaml │ │ │ │ │ ├── external_link_cta_block.html │ │ │ │ │ ├── external_link_cta_block.yaml │ │ │ │ │ ├── external_story_block.html │ │ │ │ │ ├── external_story_block.yaml │ │ │ │ │ ├── heading2_block.html │ │ │ │ │ ├── heading2_block.yaml │ │ │ │ │ ├── heading3_block.html │ │ │ │ │ ├── heading3_block.yaml │ │ │ │ │ ├── heading4_block.html │ │ │ │ │ ├── heading4_block.yaml │ │ │ │ │ ├── impact_report_heading_block.html │ │ │ │ │ ├── impact_report_heading_block.yaml │ │ │ │ │ ├── instagram-gallery.html │ │ │ │ │ ├── intro_block.html │ │ │ │ │ ├── intro_block.yaml │ │ │ │ │ ├── key-points.html │ │ │ │ │ ├── key-points.yaml │ │ │ │ │ ├── key_points_summary.html │ │ │ │ │ ├── key_points_summary.yaml │ │ │ │ │ ├── mailchimp_form_block.html │ │ │ │ │ ├── mailchimp_form_block.yaml │ │ │ │ │ ├── markdown_block.html │ │ │ │ │ ├── markdown_block.yaml │ │ │ │ │ ├── paragraph_block.html │ │ │ │ │ ├── paragraph_block.yaml │ │ │ │ │ ├── paragraph_with_image_block.html │ │ │ │ │ ├── paragraph_with_image_block.yaml │ │ │ │ │ ├── paragraph_with_quote_block.html │ │ │ │ │ ├── paragraph_with_quote_block.yaml │ │ │ │ │ ├── process-section.html │ │ │ │ │ ├── process-section.yaml │ │ │ │ │ ├── pullquote_block.html │ │ │ │ │ ├── pullquote_block.yaml │ │ │ │ │ ├── raw_html_block.html │ │ │ │ │ ├── raw_html_block.yaml │ │ │ │ │ ├── small_image_with_text_block.html │ │ │ │ │ ├── small_image_with_text_block.yaml │ │ │ │ │ ├── testimonial_block.html │ │ │ │ │ ├── testimonial_block.yaml │ │ │ │ │ ├── testimonials.html │ │ │ │ │ ├── testimonials.yaml │ │ │ │ │ ├── thinking.html │ │ │ │ │ ├── thinking.yaml │ │ │ │ │ ├── three_column_image_grid_block.html │ │ │ │ │ ├── three_column_image_grid_block.yaml │ │ │ │ │ ├── two_column_text_grid_block.html │ │ │ │ │ ├── two_column_text_grid_block.yaml │ │ │ │ │ ├── video_block.html │ │ │ │ │ ├── video_block.yaml │ │ │ │ │ ├── wide_image_block.html │ │ │ │ │ └── wide_image_block.yaml │ │ │ │ ├── stream_block.html │ │ │ │ ├── stream_block.yaml │ │ │ │ ├── streamfield-example-blog.html │ │ │ │ ├── streamfield-example-proposition-page │ │ │ │ │ ├── clients-section-body.html │ │ │ │ │ └── clients-section-body.yaml │ │ │ │ ├── streamfield-example-standard.html │ │ │ │ ├── streamfield-example-team.html │ │ │ │ ├── streamfield-example-work.html │ │ │ │ ├── sub_proposition_stream_block.html │ │ │ │ └── sub_proposition_stream_block.yaml │ │ │ ├── team-member │ │ │ │ ├── team-member.html │ │ │ │ └── team-member.yaml │ │ │ ├── title-block │ │ │ │ ├── title-block.html │ │ │ │ └── title-block.yaml │ │ │ └── value │ │ │ │ ├── value.html │ │ │ │ └── value.yaml │ │ │ ├── organisms │ │ │ ├── blog-listing │ │ │ │ ├── blog-listing.html │ │ │ │ └── blog-listing.yaml │ │ │ ├── card-listing │ │ │ │ ├── card-listing.html │ │ │ │ └── card-listing.yaml │ │ │ ├── client-block │ │ │ │ ├── client-block.html │ │ │ │ └── client-block.yaml │ │ │ ├── footer │ │ │ │ └── footer.html │ │ │ ├── header │ │ │ │ └── header.html │ │ │ ├── latest-posts │ │ │ │ ├── latest-posts.html │ │ │ │ └── latest-posts.yaml │ │ │ ├── page-contact │ │ │ │ └── page-contact.html │ │ │ ├── process-block │ │ │ │ ├── process-block.html │ │ │ │ └── process-block.yaml │ │ │ ├── related-content │ │ │ │ ├── related-content.html │ │ │ │ └── related-content.yaml │ │ │ └── work-listing │ │ │ │ ├── work-listing.html │ │ │ │ └── work-listing.yaml │ │ │ └── pages │ │ │ ├── blog │ │ │ ├── blog_detail.html │ │ │ ├── blog_detail.yaml │ │ │ ├── blog_listing.html │ │ │ └── blog_listing.yaml │ │ │ ├── careers │ │ │ ├── careers_page.html │ │ │ └── careers_page.yaml │ │ │ ├── courses │ │ │ ├── course_detail_page.html │ │ │ ├── course_detail_page.yaml │ │ │ ├── course_landing_page.html │ │ │ └── course_landing_page.yaml │ │ │ ├── errors │ │ │ ├── 404.html │ │ │ ├── 404.yaml │ │ │ └── 500.html │ │ │ ├── events │ │ │ ├── events_listing.html │ │ │ └── events_listing.yaml │ │ │ ├── home │ │ │ ├── home_page.html │ │ │ └── home_page.yaml │ │ │ ├── impact_reports │ │ │ ├── impact_report_page.html │ │ │ └── impact_report_page.yaml │ │ │ ├── job │ │ │ ├── job_listing.html │ │ │ └── job_listing.yaml │ │ │ ├── proposition │ │ │ ├── proposition.html │ │ │ ├── proposition.yaml │ │ │ ├── sub_proposition.html │ │ │ └── sub_proposition.yaml │ │ │ ├── service │ │ │ ├── service.html │ │ │ └── service.yaml │ │ │ ├── standard │ │ │ ├── standard_page.html │ │ │ └── standard_page.yaml │ │ │ ├── team │ │ │ ├── team_detail.html │ │ │ ├── team_detail.yaml │ │ │ ├── team_listing.html │ │ │ └── team_listing.yaml │ │ │ ├── values │ │ │ ├── values_page.html │ │ │ └── values_page.yaml │ │ │ ├── wagtail │ │ │ ├── password_required.html │ │ │ └── password_required.yaml │ │ │ └── work │ │ │ ├── work_detail.html │ │ │ ├── work_detail.yaml │ │ │ ├── work_listing.html │ │ │ └── work_listing.yaml │ ├── templatetags │ │ ├── __init__.py │ │ ├── navigation_tags.py │ │ ├── readingtimetags.py │ │ ├── wagtailcore_tags.py │ │ └── wagtailimages_tags.py │ └── views.py ├── propositions │ ├── __init__.py │ ├── blocks.py │ ├── factories.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── migrate_subservicepages.py │ │ │ └── undo_subservicepage_migration.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_key_points_summary.py │ │ ├── 0003_testimonial_block.py │ │ ├── 0004_clients_logo_block.py │ │ ├── 0005_embed_plu_cta.py │ │ ├── 0006_cta_block.py │ │ ├── 0007_optional_img_and_embed_on_embedplusctablock.py │ │ ├── 0008_auto_20230317_1144.py │ │ ├── 0009_alter_propositionpage_theme.py │ │ ├── 0009_auto_20230503_1527.py │ │ ├── 0010_merge_20230620_1607.py │ │ ├── 0011_add_social_fields_to_all_page_types.py │ │ ├── 0011_subpropositionpage.py │ │ ├── 0012_merge_20230808_1555.py │ │ ├── 0013_alter_subpropositionpage_content.py │ │ ├── 0014_subservicepagetosubpropositionpagemigration.py │ │ ├── 0015_add_optional_link_to_testimonials.py │ │ ├── 0016_add_work_and_thinking_to_proposition_page.py │ │ ├── 0016_remove_process_block_image_and_processes_section_embed_url.py │ │ ├── 0017_remove_heading_for_processes_field.py │ │ ├── 0018_merge_20231109_1255.py │ │ ├── 0019_change_minimum_number_for_key_points.py │ │ └── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ ├── test_factories.py │ │ └── test_models.py ├── services │ ├── __init__.py │ ├── constants.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190123_1133.py │ │ ├── 0003_servicepage_service.py │ │ ├── 0004_delete_all_services.py │ │ ├── 0005_remove_models.py │ │ ├── 0006_new_servicepage_model.py │ │ ├── 0007_servicepagekeypoint_linked_page.py │ │ ├── 0008_servicepage_is_darktheme.py │ │ ├── 0009_auto_20190206_2323.py │ │ ├── 0010_auto_20190207_0216.py │ │ ├── 0011_auto_20190207_0233.py │ │ ├── 0012_servicepageherolink.py │ │ ├── 0013_auto_20190207_0252.py │ │ ├── 0014_subservicepage.py │ │ ├── 0015_auto_20190207_1625.py │ │ ├── 0016_auto_20190207_1630.py │ │ ├── 0017_auto_20190207_1702.py │ │ ├── 0018_auto_20190207_1740.py │ │ ├── 0019_subservicepage_parent_service.py │ │ ├── 0020_servicepage_greeting_image.py │ │ ├── 0021_auto_20190211_0705.py │ │ ├── 0022_servicepage_heading_for_processes.py │ │ ├── 0023_key_points_heading_not_required.py │ │ ├── 0024_auto_20190316_1641.py │ │ ├── 0025_servicepage_theme.py │ │ ├── 0026_delete_subservice_page.py │ │ ├── 0027_create_subservice_page.py │ │ ├── 0028_services_orderable_fix.py │ │ ├── 0029_subservice_listingsettings.py │ │ ├── 0030_subservicepage_remove_fields.py │ │ ├── 0031_service_process_section_cta.py │ │ ├── 0032_update_image_model.py │ │ ├── 0033_subservicepage_content.py │ │ ├── 0034_auto_20230309_1526.py │ │ ├── 0035_services_processes_section_embed_url.py │ │ ├── 0036_service_add_help_text.py │ │ ├── 0037_alter_subservicepage_content.py │ │ ├── 0038_call_to_action.py │ │ ├── 0038_data_migration_subservice_theme.py │ │ ├── 0039_data_migration_service_theme.py │ │ ├── 0040_update_services_theme.py │ │ ├── 0041_merge_0038_call_to_action_0040_update_services_theme.py │ │ ├── 0042_add_social_fields_to_all_page_types.py │ │ ├── 0043_change_minimum_number_for_key_points.py │ │ └── __init__.py │ └── models.py ├── settings │ ├── .gitignore │ ├── __init__.py │ ├── base.py │ ├── dev.py │ ├── local.py.example │ ├── production.py │ └── test.py ├── sign_up_form │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_signuppage_and_related_models.py │ │ └── __init__.py │ ├── models.py │ └── templates │ │ └── sign_up_form │ │ ├── includes │ │ ├── sign_up_form_page_form.html │ │ └── sign_up_form_page_landing.html │ │ └── sign_up_form_page.html ├── static_src │ ├── fonts │ │ └── apercu │ │ │ ├── apercu-black-pro.eot │ │ │ ├── apercu-black-pro.ttf │ │ │ ├── apercu-black-pro.woff │ │ │ ├── apercu-black-pro.woff2 │ │ │ ├── apercu-bold-pro.eot │ │ │ ├── apercu-bold-pro.ttf │ │ │ ├── apercu-bold-pro.woff │ │ │ ├── apercu-bold-pro.woff2 │ │ │ ├── apercu-light-pro.eot │ │ │ ├── apercu-light-pro.ttf │ │ │ ├── apercu-light-pro.woff │ │ │ ├── apercu-light-pro.woff2 │ │ │ ├── apercu-regular-pro.eot │ │ │ ├── apercu-regular-pro.ttf │ │ │ ├── apercu-regular-pro.woff │ │ │ └── apercu-regular-pro.woff2 │ ├── images │ │ ├── cssBackgrounds │ │ │ ├── 404.jpg │ │ │ ├── chevron.svg │ │ │ ├── cluster.svg │ │ │ ├── diamond.svg │ │ │ ├── frag.png │ │ │ ├── quote.svg │ │ │ ├── report-hero-icons.svg │ │ │ ├── tick.png │ │ │ └── tick.svg │ │ ├── data-greeting.svg │ │ ├── default-avatar.png │ │ ├── default-featured.png │ │ ├── favicon.png │ │ ├── firefox.png │ │ ├── frag-cluster1.svg │ │ ├── frag-cluster2.svg │ │ ├── frag-cluster3.svg │ │ ├── help-character.png │ │ ├── help-character.svg │ │ ├── hero-mask.svg │ │ ├── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-256x256.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ ├── logo.svg │ │ ├── man-coffee.svg │ │ ├── man-fruit.svg │ │ ├── man-right.svg │ │ ├── processes-desktop.png │ │ ├── processes-mobile.png │ │ ├── shards-window.svg │ │ ├── sunday-times-100-best-companies.jpg │ │ ├── tbx-flame.svg │ │ ├── toolkit.svg │ │ ├── wagtail-bird.svg │ │ ├── wagtail-greeting.svg │ │ ├── wagtail.svg │ │ └── will.jpg │ ├── javascript │ │ ├── components │ │ │ ├── active-nav-item.js │ │ │ ├── carousel.js │ │ │ ├── console-message.js │ │ │ ├── cookie-message.js │ │ │ ├── in-page-nav.js │ │ │ ├── mobile-menu-toggle.js │ │ │ ├── primary-nav.js │ │ │ ├── see-more-posts.js │ │ │ ├── shards-images.js │ │ │ ├── sticky-nav.js │ │ │ └── sticky-point.js │ │ └── main.js │ └── sass │ │ ├── abstracts │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ │ ├── base │ │ ├── _base.scss │ │ ├── _fonts.scss │ │ └── _typography.scss │ │ ├── components │ │ ├── _animated-character.scss │ │ ├── _author.scss │ │ ├── _avatar.scss │ │ ├── _badge.scss │ │ ├── _blog-item.scss │ │ ├── _blog-listing.scss │ │ ├── _bustout.scss │ │ ├── _button.scss │ │ ├── _card-listing.scss │ │ ├── _card.scss │ │ ├── _careers.scss │ │ ├── _client-block.scss │ │ ├── _client-item.scss │ │ ├── _contact-block.scss │ │ ├── _contact-slim.scss │ │ ├── _cookie-message.scss │ │ ├── _course-grid-item.scss │ │ ├── _course-grid.scss │ │ ├── _course-outline.scss │ │ ├── _cta.scss │ │ ├── _email-signup.scss │ │ ├── _embed-cta.scss │ │ ├── _error-hero.scss │ │ ├── _events.scss │ │ ├── _external-link-cta.scss │ │ ├── _filter.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _help-block.scss │ │ ├── _hero.scss │ │ ├── _home.scss │ │ ├── _in-page-nav.scss │ │ ├── _instagram-gallery.scss │ │ ├── _introduction.scss │ │ ├── _job-item.scss │ │ ├── _job-listing.scss │ │ ├── _key-points.scss │ │ ├── _list-item.scss │ │ ├── _locations.scss │ │ ├── _logo.scss │ │ ├── _mailchimp.scss │ │ ├── _menu-button.scss │ │ ├── _mobile-nav.scss │ │ ├── _nav-item.scss │ │ ├── _page.scss │ │ ├── _paragraph-with-image.scss │ │ ├── _paragraph-with-quote.scss │ │ ├── _password-required.scss │ │ ├── _post.scss │ │ ├── _posts-grid.scss │ │ ├── _primary-nav.scss │ │ ├── _process.scss │ │ ├── _proposition-section.scss │ │ ├── _pullquote.scss │ │ ├── _quote-slide.scss │ │ ├── _quote-slider.scss │ │ ├── _raw-html-block.scss │ │ ├── _reason.scss │ │ ├── _related-content.scss │ │ ├── _related-courses.scss │ │ ├── _related-item.scss │ │ ├── _report-hero.scss │ │ ├── _report-in-page-nav.scss │ │ ├── _report-page.scss │ │ ├── _report-section.scss │ │ ├── _section-title.scss │ │ ├── _see-more.scss │ │ ├── _sentinel.scss │ │ ├── _shards.scss │ │ ├── _skip-link.scss │ │ ├── _small-image-with-text.scss │ │ ├── _sprites-preview-icons.scss │ │ ├── _streamfield.scss │ │ ├── _subnav.scss │ │ ├── _tag.scss │ │ ├── _team-member.scss │ │ ├── _team.scss │ │ ├── _theme.scss │ │ ├── _three-col-image.scss │ │ ├── _title-block.scss │ │ ├── _two-col-text.scss │ │ ├── _utilities.scss │ │ ├── _values.scss │ │ └── _webstory-player.scss │ │ ├── main.scss │ │ └── vendor │ │ ├── _codehilite.scss │ │ └── _normalize.scss ├── taxonomy │ ├── __init__.py │ ├── admin.py │ ├── factories.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_initial_services.py │ │ ├── 0003_service_description.py │ │ ├── 0004_service_preferred_contact.py │ │ ├── 0005_service_contact_reasons.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── taxonomy │ │ │ └── admin │ │ │ ├── delete.html │ │ │ └── usage.html │ ├── tests │ │ ├── __init__.py │ │ └── test_factories.py │ ├── utils.py │ └── wagtail_hooks.py ├── urls.py ├── work │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_move_people_into_new_app.py │ │ ├── 0003_workpageauthor_author.py │ │ ├── 0004_populate_workpageauthor_author.py │ │ ├── 0005_remove_workpageauthor_author_person_page.py │ │ ├── 0006_remove_workpage_author_left.py │ │ ├── 0007_rename_related_author_to_authors.py │ │ ├── 0008_remove_workpage_body.py │ │ ├── 0009_remove_play_fields.py │ │ ├── 0010_rename_streamfield_to_body.py │ │ ├── 0011_remove_workpage_marketing_only.py │ │ ├── 0012_remove_workpage_intro.py │ │ ├── 0013_workpage_related_services.py │ │ ├── 0014_map_tags_to_related_services.py │ │ ├── 0015_workpage_body_word_count.py │ │ ├── 0016_rename_summary_to_listing_summary.py │ │ ├── 0017_listing_summary_not_required.py │ │ ├── 0018_workpage_client.py │ │ ├── 0019_remove_workpage_descriptive_title.py │ │ ├── 0020_update_streamblock_templates.py │ │ ├── 0021_update_streamblock_templates.py │ │ ├── 0022_workpage_date.py │ │ ├── 0023_date_data_migration.py │ │ ├── 0024_update_image_model.py │ │ ├── 0025_create_external_story_block.py │ │ ├── 0026_alter_workpage_body.py │ │ ├── 0027_call_to_action.py │ │ ├── 0028_add_video_block.py │ │ ├── 0029_add_mailchimp_block.py │ │ ├── 0030_add_social_fields_to_all_page_types.py │ │ ├── 0031_alter_workpage_date.py │ │ ├── 0032_change_minimum_number_for_key_points.py │ │ └── __init__.py │ └── models.py └── wsgi.py └── webpack.config.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501,F405,W503 3 | exclude = */migrations/*,node_modules/,tbx/settings/local.py 4 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/flightpath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.github/workflows/flightpath.yml -------------------------------------------------------------------------------- /.github/workflows/flightpath_status_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.github/workflows/flightpath_status_check.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | static_compiled 2 | *.html 3 | coverage 4 | venv 5 | -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.prettierrc.toml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/app.json -------------------------------------------------------------------------------- /browsersync.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/browsersync.config.js -------------------------------------------------------------------------------- /cloudflare/workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/cloudflare/workers.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docker/Procfile -------------------------------------------------------------------------------- /docker/bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docker/bashrc.sh -------------------------------------------------------------------------------- /docker/docker-compose-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docker/docker-compose-frontend.yml -------------------------------------------------------------------------------- /docs/anonymised-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/anonymised-data.md -------------------------------------------------------------------------------- /docs/continuous-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/continuous-integration.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/front-end/placeholder-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/front-end/placeholder-images.md -------------------------------------------------------------------------------- /docs/front-end/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/front-end/tooling.md -------------------------------------------------------------------------------- /docs/images/docker-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/images/docker-diagram.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/infrastructure.md -------------------------------------------------------------------------------- /docs/page-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/page-models.md -------------------------------------------------------------------------------- /docs/project-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/project-conventions.md -------------------------------------------------------------------------------- /docs/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/upgrading.md -------------------------------------------------------------------------------- /docs/vscode-dev-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/docs/vscode-dev-container.md -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/fabfile.py -------------------------------------------------------------------------------- /gunicorn-conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/gunicorn-conf.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/heroku.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/manage.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/poetry.lock -------------------------------------------------------------------------------- /public/googlebfad87a36358211e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/public/googlebfad87a36358211e.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/setup.cfg -------------------------------------------------------------------------------- /tbx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/blog/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/feeds.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0002_move_people_into_new_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0002_move_people_into_new_app.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0003_blogpageauthor_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0003_blogpageauthor_author.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0004_populate_blogpageauthor_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0004_populate_blogpageauthor_author.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0005_remove_blogpageauthor_author_person_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0005_remove_blogpageauthor_author_person_page.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0006_remove_blogpage_author_left.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0006_remove_blogpage_author_left.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0007_rename_related_author_to_authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0007_rename_related_author_to_authors.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0008_remove_blogpage_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0008_remove_blogpage_body.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0009_remove_blogindexpage_show_in_play_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0009_remove_blogindexpage_show_in_play_menu.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0010_rename_streamfield_to_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0010_rename_streamfield_to_body.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0011_helptext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0011_helptext.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0012_remove_blogpage_marketing_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0012_remove_blogpage_marketing_only.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0013_blogpage_listing_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0013_blogpage_listing_summary.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0014_remove_blogpage_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0014_remove_blogpage_intro.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0015_auto_20190123_1133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0015_auto_20190123_1133.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0016_blogpage_related_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0016_blogpage_related_services.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0017_map_tags_to_related_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0017_map_tags_to_related_services.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0018_remove_blogpage_colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0018_remove_blogpage_colour.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0019_blogpage_body_word_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0019_blogpage_body_word_count.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0020_update_streamblock_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0020_update_streamblock_templates.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0021_update_streamblock_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0021_update_streamblock_templates.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0022_update_image_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0022_update_image_model.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0023_create_external_story_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0023_create_external_story_block.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0024_alter_blogpage_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0024_alter_blogpage_body.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0025_call_to_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0025_call_to_action.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0026_add_video_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0026_add_video_block.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0027_add_mailchimp_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0027_add_mailchimp_block.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0028_add_social_fields_to_all_page_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0028_add_social_fields_to_all_page_types.py -------------------------------------------------------------------------------- /tbx/blog/migrations/0029_change_minimum_number_for_key_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/migrations/0029_change_minimum_number_for_key_points.py -------------------------------------------------------------------------------- /tbx/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/blog/models.py -------------------------------------------------------------------------------- /tbx/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/api.py -------------------------------------------------------------------------------- /tbx/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/apps.py -------------------------------------------------------------------------------- /tbx/core/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/blocks.py -------------------------------------------------------------------------------- /tbx/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/context_processors.py -------------------------------------------------------------------------------- /tbx/core/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/fields.py -------------------------------------------------------------------------------- /tbx/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/core/management/commands/test_sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/management/commands/test_sentry.py -------------------------------------------------------------------------------- /tbx/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/core/migrations/0002_workpage_streamfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0002_workpage_streamfield.py -------------------------------------------------------------------------------- /tbx/core/migrations/0003_auto_20150313_1717.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0003_auto_20150313_1717.py -------------------------------------------------------------------------------- /tbx/core/migrations/0004_auto_20150325_1627.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0004_auto_20150325_1627.py -------------------------------------------------------------------------------- /tbx/core/migrations/0005_auto_20150325_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0005_auto_20150325_1631.py -------------------------------------------------------------------------------- /tbx/core/migrations/0006_auto_20150326_1023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0006_auto_20150326_1023.py -------------------------------------------------------------------------------- /tbx/core/migrations/0007_auto_20150326_1142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0007_auto_20150326_1142.py -------------------------------------------------------------------------------- /tbx/core/migrations/0008_wagtailimage_verbosename_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0008_wagtailimage_verbosename_changes.py -------------------------------------------------------------------------------- /tbx/core/migrations/0009_auto_20150427_1230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0009_auto_20150427_1230.py -------------------------------------------------------------------------------- /tbx/core/migrations/0010_auto_20150611_1528.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0010_auto_20150611_1528.py -------------------------------------------------------------------------------- /tbx/core/migrations/0011_auto_20150612_1126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0011_auto_20150612_1126.py -------------------------------------------------------------------------------- /tbx/core/migrations/0012_auto_20150703_1543.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0012_auto_20150703_1543.py -------------------------------------------------------------------------------- /tbx/core/migrations/0013_auto_20150720_1154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0013_auto_20150720_1154.py -------------------------------------------------------------------------------- /tbx/core/migrations/0014_workpage_show_in_play_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0014_workpage_show_in_play_menu.py -------------------------------------------------------------------------------- /tbx/core/migrations/0015_auto_20151105_1715.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0015_auto_20151105_1715.py -------------------------------------------------------------------------------- /tbx/core/migrations/0015_auto_20160205_1536.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0015_auto_20160205_1536.py -------------------------------------------------------------------------------- /tbx/core/migrations/0015_auto_20160218_1201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0015_auto_20160218_1201.py -------------------------------------------------------------------------------- /tbx/core/migrations/0016_auto_20160205_1724.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0016_auto_20160205_1724.py -------------------------------------------------------------------------------- /tbx/core/migrations/0016_reasontojoin_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0016_reasontojoin_subtitle.py -------------------------------------------------------------------------------- /tbx/core/migrations/0017_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0017_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0018_auto_20160222_1029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0018_auto_20160222_1029.py -------------------------------------------------------------------------------- /tbx/core/migrations/0019_googleadgrantspage_to_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0019_googleadgrantspage_to_address.py -------------------------------------------------------------------------------- /tbx/core/migrations/0020_auto_20160317_0955.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0020_auto_20160317_0955.py -------------------------------------------------------------------------------- /tbx/core/migrations/0021_auto_20160412_1508.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0021_auto_20160412_1508.py -------------------------------------------------------------------------------- /tbx/core/migrations/0021_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0021_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0023_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0023_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0024_auto_20160321_1808.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0024_auto_20160321_1808.py -------------------------------------------------------------------------------- /tbx/core/migrations/0024_remove_reasontojoin_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0024_remove_reasontojoin_subtitle.py -------------------------------------------------------------------------------- /tbx/core/migrations/0025_marketinglandingpagepageclients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0025_marketinglandingpagepageclients.py -------------------------------------------------------------------------------- /tbx/core/migrations/0026_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0026_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0027_auto_20160603_1718.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0027_auto_20160603_1718.py -------------------------------------------------------------------------------- /tbx/core/migrations/0027_homepageclients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0027_homepageclients.py -------------------------------------------------------------------------------- /tbx/core/migrations/0027_marketinglandingpagerelatedlink_email_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0027_marketinglandingpagerelatedlink_email_link.py -------------------------------------------------------------------------------- /tbx/core/migrations/0028_auto_20160531_1640.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0028_auto_20160531_1640.py -------------------------------------------------------------------------------- /tbx/core/migrations/0028_auto_20160617_1120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0028_auto_20160617_1120.py -------------------------------------------------------------------------------- /tbx/core/migrations/0029_auto_20160601_1630.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0029_auto_20160601_1630.py -------------------------------------------------------------------------------- /tbx/core/migrations/0029_homepagehero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0029_homepagehero.py -------------------------------------------------------------------------------- /tbx/core/migrations/0030_auto_20160617_1146.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0030_auto_20160617_1146.py -------------------------------------------------------------------------------- /tbx/core/migrations/0030_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0030_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0031_blogpage_canonical_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0031_blogpage_canonical_url.py -------------------------------------------------------------------------------- /tbx/core/migrations/0031_blogpage_homepage_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0031_blogpage_homepage_color.py -------------------------------------------------------------------------------- /tbx/core/migrations/0032_jobindexpagejob_job_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0032_jobindexpagejob_job_intro.py -------------------------------------------------------------------------------- /tbx/core/migrations/0033_homepagehero_colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0033_homepagehero_colour.py -------------------------------------------------------------------------------- /tbx/core/migrations/0034_auto_20160617_1609.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0034_auto_20160617_1609.py -------------------------------------------------------------------------------- /tbx/core/migrations/0035_auto_20160617_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0035_auto_20160617_1631.py -------------------------------------------------------------------------------- /tbx/core/migrations/0036_auto_20160617_1650.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0036_auto_20160617_1650.py -------------------------------------------------------------------------------- /tbx/core/migrations/0037_auto_20160701_1307.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0037_auto_20160701_1307.py -------------------------------------------------------------------------------- /tbx/core/migrations/0038_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0038_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0039_auto_20160706_1716.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0039_auto_20160706_1716.py -------------------------------------------------------------------------------- /tbx/core/migrations/0040_auto_20160707_1218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0040_auto_20160707_1218.py -------------------------------------------------------------------------------- /tbx/core/migrations/0041_auto_20160707_1223.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0041_auto_20160707_1223.py -------------------------------------------------------------------------------- /tbx/core/migrations/0042_aboutpage_aboutpageservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0042_aboutpage_aboutpageservice.py -------------------------------------------------------------------------------- /tbx/core/migrations/0043_auto_20160707_1648.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0043_auto_20160707_1648.py -------------------------------------------------------------------------------- /tbx/core/migrations/0044_aboutpage_heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0044_aboutpage_heading.py -------------------------------------------------------------------------------- /tbx/core/migrations/0045_auto_20160708_1127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0045_auto_20160708_1127.py -------------------------------------------------------------------------------- /tbx/core/migrations/0046_auto_20160718_1554.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0046_auto_20160718_1554.py -------------------------------------------------------------------------------- /tbx/core/migrations/0047_homepagehero_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0047_homepagehero_text.py -------------------------------------------------------------------------------- /tbx/core/migrations/0048_personpage_is_senior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0048_personpage_is_senior.py -------------------------------------------------------------------------------- /tbx/core/migrations/0049_auto_20160819_1421.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0049_auto_20160819_1421.py -------------------------------------------------------------------------------- /tbx/core/migrations/0050_auto_20160826_1123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0050_auto_20160826_1123.py -------------------------------------------------------------------------------- /tbx/core/migrations/0051_mainmenu_mainmenuitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0051_mainmenu_mainmenuitem.py -------------------------------------------------------------------------------- /tbx/core/migrations/0052_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0052_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0053_jobindexpage_reasons_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0053_jobindexpage_reasons_intro.py -------------------------------------------------------------------------------- /tbx/core/migrations/0054_auto_20160826_1657.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0054_auto_20160826_1657.py -------------------------------------------------------------------------------- /tbx/core/migrations/0055_auto_20160830_1705.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0055_auto_20160830_1705.py -------------------------------------------------------------------------------- /tbx/core/migrations/0056_workpage_visit_the_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0056_workpage_visit_the_site.py -------------------------------------------------------------------------------- /tbx/core/migrations/0057_auto_20160831_1135.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0057_auto_20160831_1135.py -------------------------------------------------------------------------------- /tbx/core/migrations/0058_auto_20160831_1239.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0058_auto_20160831_1239.py -------------------------------------------------------------------------------- /tbx/core/migrations/0059_auto_20160831_1243.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0059_auto_20160831_1243.py -------------------------------------------------------------------------------- /tbx/core/migrations/0060_auto_20160901_1658.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0060_auto_20160901_1658.py -------------------------------------------------------------------------------- /tbx/core/migrations/0061_auto_20160902_1609.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0061_auto_20160902_1609.py -------------------------------------------------------------------------------- /tbx/core/migrations/0062_auto_20160905_1151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0062_auto_20160905_1151.py -------------------------------------------------------------------------------- /tbx/core/migrations/0063_auto_20160906_0949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0063_auto_20160906_0949.py -------------------------------------------------------------------------------- /tbx/core/migrations/0064_aboutpagerelatedlinkbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0064_aboutpagerelatedlinkbutton.py -------------------------------------------------------------------------------- /tbx/core/migrations/0065_auto_20160906_1449.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0065_auto_20160906_1449.py -------------------------------------------------------------------------------- /tbx/core/migrations/0066_auto_20160906_1624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0066_auto_20160906_1624.py -------------------------------------------------------------------------------- /tbx/core/migrations/0067_auto_20160906_1651.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0067_auto_20160906_1651.py -------------------------------------------------------------------------------- /tbx/core/migrations/0068_auto_20160909_1100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0068_auto_20160909_1100.py -------------------------------------------------------------------------------- /tbx/core/migrations/0068_torchboximage_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0068_torchboximage_collection.py -------------------------------------------------------------------------------- /tbx/core/migrations/0069_auto_20160915_1023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0069_auto_20160915_1023.py -------------------------------------------------------------------------------- /tbx/core/migrations/0070_auto_20160915_1031.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0070_auto_20160915_1031.py -------------------------------------------------------------------------------- /tbx/core/migrations/0071_auto_rename_global_settings_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0071_auto_rename_global_settings_fields.py -------------------------------------------------------------------------------- /tbx/core/migrations/0071_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0071_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0072_auto_20161026_0959.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0072_auto_20161026_0959.py -------------------------------------------------------------------------------- /tbx/core/migrations/0072_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0072_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0073_auto_20161026_1023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0073_auto_20161026_1023.py -------------------------------------------------------------------------------- /tbx/core/migrations/0074_servicepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0074_servicepage.py -------------------------------------------------------------------------------- /tbx/core/migrations/0075_auto_20161124_0845.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0075_auto_20161124_0845.py -------------------------------------------------------------------------------- /tbx/core/migrations/0076_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0076_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0077_auto_20161129_1011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0077_auto_20161129_1011.py -------------------------------------------------------------------------------- /tbx/core/migrations/0078_auto_20161129_1014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0078_auto_20161129_1014.py -------------------------------------------------------------------------------- /tbx/core/migrations/0079_auto_20161129_1640.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0079_auto_20161129_1640.py -------------------------------------------------------------------------------- /tbx/core/migrations/0080_auto_20161129_1640.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0080_auto_20161129_1640.py -------------------------------------------------------------------------------- /tbx/core/migrations/0081_servicespageservice_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0081_servicespageservice_link.py -------------------------------------------------------------------------------- /tbx/core/migrations/0082_auto_20170112_1611.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0082_auto_20170112_1611.py -------------------------------------------------------------------------------- /tbx/core/migrations/0083_homepage_remove_unused_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0083_homepage_remove_unused_field.py -------------------------------------------------------------------------------- /tbx/core/migrations/0084_homepage_add_editable_strapline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0084_homepage_add_editable_strapline.py -------------------------------------------------------------------------------- /tbx/core/migrations/0085_add_filter_spec_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0085_add_filter_spec_field.py -------------------------------------------------------------------------------- /tbx/core/migrations/0086_fill_filter_spec_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0086_fill_filter_spec_field.py -------------------------------------------------------------------------------- /tbx/core/migrations/0087_auto_20170117_1643.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0087_auto_20170117_1643.py -------------------------------------------------------------------------------- /tbx/core/migrations/0088_fix_wrong_parameter_in_page_chooser_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0088_fix_wrong_parameter_in_page_chooser_block.py -------------------------------------------------------------------------------- /tbx/core/migrations/0089_add_subtitle_into_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0089_add_subtitle_into_step.py -------------------------------------------------------------------------------- /tbx/core/migrations/0090_servicepage_add_sign_up_form_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0090_servicepage_add_sign_up_form_page.py -------------------------------------------------------------------------------- /tbx/core/migrations/0091_auto_20170201_1043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0091_auto_20170201_1043.py -------------------------------------------------------------------------------- /tbx/core/migrations/0092_servicepage_add_logos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0092_servicepage_add_logos.py -------------------------------------------------------------------------------- /tbx/core/migrations/0093_auto_20170315_1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0093_auto_20170315_1306.py -------------------------------------------------------------------------------- /tbx/core/migrations/0093_wagtail19_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0093_wagtail19_upgrade.py -------------------------------------------------------------------------------- /tbx/core/migrations/0094_auto_20170908_1245.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0094_auto_20170908_1245.py -------------------------------------------------------------------------------- /tbx/core/migrations/0094_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0094_merge.py -------------------------------------------------------------------------------- /tbx/core/migrations/0095_set_blogpages_show_in_menus_true.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0095_set_blogpages_show_in_menus_true.py -------------------------------------------------------------------------------- /tbx/core/migrations/0096_revert_pr97.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0096_revert_pr97.py -------------------------------------------------------------------------------- /tbx/core/migrations/0097_merge_20180319_1455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0097_merge_20180319_1455.py -------------------------------------------------------------------------------- /tbx/core/migrations/0098_auto_20180320_1138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0098_auto_20180320_1138.py -------------------------------------------------------------------------------- /tbx/core/migrations/0099_auto_20180320_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0099_auto_20180320_1631.py -------------------------------------------------------------------------------- /tbx/core/migrations/0100_auto_20180830_1056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0100_auto_20180830_1056.py -------------------------------------------------------------------------------- /tbx/core/migrations/0101_auto_20180912_1622.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0101_auto_20180912_1622.py -------------------------------------------------------------------------------- /tbx/core/migrations/0101_merge_20180830_1109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0101_merge_20180830_1109.py -------------------------------------------------------------------------------- /tbx/core/migrations/0102_auto_20180830_1109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0102_auto_20180830_1109.py -------------------------------------------------------------------------------- /tbx/core/migrations/0102_workpage_feed_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0102_workpage_feed_image.py -------------------------------------------------------------------------------- /tbx/core/migrations/0103_merge_20180918_1304.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0103_merge_20180918_1304.py -------------------------------------------------------------------------------- /tbx/core/migrations/0104_merge_20180928_1009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0104_merge_20180928_1009.py -------------------------------------------------------------------------------- /tbx/core/migrations/0105_torchboximage_file_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0105_torchboximage_file_hash.py -------------------------------------------------------------------------------- /tbx/core/migrations/0107_move_services_into_new_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0107_move_services_into_new_app.py -------------------------------------------------------------------------------- /tbx/core/migrations/0108_move_work_into_new_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0108_move_work_into_new_app.py -------------------------------------------------------------------------------- /tbx/core/migrations/0109_move_blog_into_new_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0109_move_blog_into_new_app.py -------------------------------------------------------------------------------- /tbx/core/migrations/0110_rename_blogpagetaglist_to_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0110_rename_blogpagetaglist_to_tag.py -------------------------------------------------------------------------------- /tbx/core/migrations/0111_move_sign_up_form_into_new_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0111_move_sign_up_form_into_new_app.py -------------------------------------------------------------------------------- /tbx/core/migrations/0112_move_people_into_new_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0112_move_people_into_new_app.py -------------------------------------------------------------------------------- /tbx/core/migrations/0113_move_people_into_new_app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0113_move_people_into_new_app_2.py -------------------------------------------------------------------------------- /tbx/core/migrations/0114_remove_standardpage_show_in_play_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0114_remove_standardpage_show_in_play_menu.py -------------------------------------------------------------------------------- /tbx/core/migrations/0115_delete_tshirt_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0115_delete_tshirt_page.py -------------------------------------------------------------------------------- /tbx/core/migrations/0116_delete_marketing_landing_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0116_delete_marketing_landing_page.py -------------------------------------------------------------------------------- /tbx/core/migrations/0117_remove_standardpage_middle_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0117_remove_standardpage_middle_break.py -------------------------------------------------------------------------------- /tbx/core/migrations/0118_remove_standardpage_intro_and_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0118_remove_standardpage_intro_and_body.py -------------------------------------------------------------------------------- /tbx/core/migrations/0119_auto_20190123_1133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0119_auto_20190123_1133.py -------------------------------------------------------------------------------- /tbx/core/migrations/0120_remove_contactpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0120_remove_contactpage.py -------------------------------------------------------------------------------- /tbx/core/migrations/0121_remove_unused_standardpage_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0121_remove_unused_standardpage_fields.py -------------------------------------------------------------------------------- /tbx/core/migrations/0122_remove_unused_jobindexpage_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0122_remove_unused_jobindexpage_fields.py -------------------------------------------------------------------------------- /tbx/core/migrations/0123_auto_20190216_1655.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0123_auto_20190216_1655.py -------------------------------------------------------------------------------- /tbx/core/migrations/0124_auto_20190216_1657.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0124_auto_20190216_1657.py -------------------------------------------------------------------------------- /tbx/core/migrations/0125_auto_20190216_1713.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0125_auto_20190216_1713.py -------------------------------------------------------------------------------- /tbx/core/migrations/0126_jobindexpage_jobs_xml_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0126_jobindexpage_jobs_xml_feed.py -------------------------------------------------------------------------------- /tbx/core/migrations/0127_jobindexpage_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0127_jobindexpage_intro.py -------------------------------------------------------------------------------- /tbx/core/migrations/0128_auto_20201007_1415.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0128_auto_20201007_1415.py -------------------------------------------------------------------------------- /tbx/core/migrations/0129_auto_20201007_1514.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0129_auto_20201007_1514.py -------------------------------------------------------------------------------- /tbx/core/migrations/0130_socialmediasettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0130_socialmediasettings.py -------------------------------------------------------------------------------- /tbx/core/migrations/0131_update_streamblock_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0131_update_streamblock_templates.py -------------------------------------------------------------------------------- /tbx/core/migrations/0132_update_streamblock_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0132_update_streamblock_templates.py -------------------------------------------------------------------------------- /tbx/core/migrations/0133_remove_aboutpage_and_related_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0133_remove_aboutpage_and_related_models.py -------------------------------------------------------------------------------- /tbx/core/migrations/0134_remove_googleadgrantspage_and_related_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0134_remove_googleadgrantspage_and_related_models.py -------------------------------------------------------------------------------- /tbx/core/migrations/0135_auto_20210728_1218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0135_auto_20210728_1218.py -------------------------------------------------------------------------------- /tbx/core/migrations/0136_auto_20210728_1356.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0136_auto_20210728_1356.py -------------------------------------------------------------------------------- /tbx/core/migrations/0137_auto_20210802_1445.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0137_auto_20210802_1445.py -------------------------------------------------------------------------------- /tbx/core/migrations/0138_auto_20210802_1540.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0138_auto_20210802_1540.py -------------------------------------------------------------------------------- /tbx/core/migrations/0139_homepage_featured_posts_and_hero_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0139_homepage_featured_posts_and_hero_image.py -------------------------------------------------------------------------------- /tbx/core/migrations/0140_update_image_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0140_update_image_model.py -------------------------------------------------------------------------------- /tbx/core/migrations/0141_delete_old_image_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0141_delete_old_image_models.py -------------------------------------------------------------------------------- /tbx/core/migrations/0142_create_external_story_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0142_create_external_story_block.py -------------------------------------------------------------------------------- /tbx/core/migrations/0143_auto_20220422_1515.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0143_auto_20220422_1515.py -------------------------------------------------------------------------------- /tbx/core/migrations/0144_standardpage_additional_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0144_standardpage_additional_content.py -------------------------------------------------------------------------------- /tbx/core/migrations/0145_alter_standardpage_additional_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0145_alter_standardpage_additional_content.py -------------------------------------------------------------------------------- /tbx/core/migrations/0146_alter_standardpage_additional_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0146_alter_standardpage_additional_content.py -------------------------------------------------------------------------------- /tbx/core/migrations/0147_call_to_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0147_call_to_action.py -------------------------------------------------------------------------------- /tbx/core/migrations/0147_cleanup_old_database_schema_and_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0147_cleanup_old_database_schema_and_tables.py -------------------------------------------------------------------------------- /tbx/core/migrations/0148_merge_20230626_1217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0148_merge_20230626_1217.py -------------------------------------------------------------------------------- /tbx/core/migrations/0149_add_video_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0149_add_video_block.py -------------------------------------------------------------------------------- /tbx/core/migrations/0150_add_mailchimp_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0150_add_mailchimp_block.py -------------------------------------------------------------------------------- /tbx/core/migrations/0151_homepage_hero_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0151_homepage_hero_images.py -------------------------------------------------------------------------------- /tbx/core/migrations/0152_add_social_fields_to_all_page_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0152_add_social_fields_to_all_page_types.py -------------------------------------------------------------------------------- /tbx/core/migrations/0153_change_minimum_number_for_key_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0153_change_minimum_number_for_key_points.py -------------------------------------------------------------------------------- /tbx/core/migrations/0154_alter_socialmediasettings_site_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/migrations/0154_alter_socialmediasettings_site_name.py -------------------------------------------------------------------------------- /tbx/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/models.py -------------------------------------------------------------------------------- /tbx/core/templates/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/templates/security.txt -------------------------------------------------------------------------------- /tbx/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/core/templatetags/reading_time_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/templatetags/reading_time_tags.py -------------------------------------------------------------------------------- /tbx/core/templatetags/torchbox_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/templatetags/torchbox_tags.py -------------------------------------------------------------------------------- /tbx/core/templatetags/util_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/templatetags/util_tags.py -------------------------------------------------------------------------------- /tbx/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/tests.py -------------------------------------------------------------------------------- /tbx/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/urls.py -------------------------------------------------------------------------------- /tbx/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/__init__.py -------------------------------------------------------------------------------- /tbx/core/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/cache.py -------------------------------------------------------------------------------- /tbx/core/utils/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/migrations.py -------------------------------------------------------------------------------- /tbx/core/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/models.py -------------------------------------------------------------------------------- /tbx/core/utils/scripts/run_flightpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/scripts/run_flightpath.py -------------------------------------------------------------------------------- /tbx/core/utils/scripts/run_flightpath_status_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/scripts/run_flightpath_status_check.py -------------------------------------------------------------------------------- /tbx/core/utils/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/utils/views.py -------------------------------------------------------------------------------- /tbx/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/views.py -------------------------------------------------------------------------------- /tbx/core/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/core/wagtail_hooks.py -------------------------------------------------------------------------------- /tbx/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/courses/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/courses/blocks.py -------------------------------------------------------------------------------- /tbx/courses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/courses/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/courses/migrations/0002_adds_course_landing_page_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/courses/migrations/0002_adds_course_landing_page_fields.py -------------------------------------------------------------------------------- /tbx/courses/migrations/0003_adds_related_course_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/courses/migrations/0003_adds_related_course_pages.py -------------------------------------------------------------------------------- /tbx/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/courses/models.py -------------------------------------------------------------------------------- /tbx/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/events/migrations/0002_auto_20210623_1428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/events/migrations/0002_auto_20210623_1428.py -------------------------------------------------------------------------------- /tbx/events/migrations/0003_call_to_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/events/migrations/0003_call_to_action.py -------------------------------------------------------------------------------- /tbx/events/migrations/0004_add_social_fields_to_all_page_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/events/migrations/0004_add_social_fields_to_all_page_types.py -------------------------------------------------------------------------------- /tbx/events/migrations/0005_change_minimum_number_for_key_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/events/migrations/0005_change_minimum_number_for_key_points.py -------------------------------------------------------------------------------- /tbx/events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/events/models.py -------------------------------------------------------------------------------- /tbx/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/images/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/apps.py -------------------------------------------------------------------------------- /tbx/images/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/factories.py -------------------------------------------------------------------------------- /tbx/images/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/images/migrations/0002_copy_custom_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/migrations/0002_copy_custom_images.py -------------------------------------------------------------------------------- /tbx/images/migrations/0003_alter_customimage_file_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/migrations/0003_alter_customimage_file_hash.py -------------------------------------------------------------------------------- /tbx/images/migrations/0004_wagtail42_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/migrations/0004_wagtail42_images.py -------------------------------------------------------------------------------- /tbx/images/migrations/0005_alter_rendition_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/migrations/0005_alter_rendition_file.py -------------------------------------------------------------------------------- /tbx/images/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/images/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/images/models.py -------------------------------------------------------------------------------- /tbx/impact_reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/impact_reports/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/apps.py -------------------------------------------------------------------------------- /tbx/impact_reports/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/blocks.py -------------------------------------------------------------------------------- /tbx/impact_reports/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/impact_reports/migrations/0002_alter_impactreportpage_hero_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/migrations/0002_alter_impactreportpage_hero_image.py -------------------------------------------------------------------------------- /tbx/impact_reports/migrations/0003_alter_impactreportpage_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/migrations/0003_alter_impactreportpage_body.py -------------------------------------------------------------------------------- /tbx/impact_reports/migrations/0004_add_instagram_gallery_to_imact_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/migrations/0004_add_instagram_gallery_to_imact_report.py -------------------------------------------------------------------------------- /tbx/impact_reports/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/impact_reports/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/impact_reports/models.py -------------------------------------------------------------------------------- /tbx/navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/navigation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0002_navigationsettings_footer_teasers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0002_navigationsettings_footer_teasers.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0003_auto_20210415_1145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0003_auto_20210415_1145.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0004_navigationsettings_footer_top_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0004_navigationsettings_footer_top_links.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0005_auto_20210802_1540.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0005_auto_20210802_1540.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0006_auto_20220422_1515.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0006_auto_20220422_1515.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0007_navigationsettings_footer_logos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0007_navigationsettings_footer_logos.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0008_alter_navigationsettings_footer_logos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0008_alter_navigationsettings_footer_logos.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/0010_remove_navigationsettings_footer_teasers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/migrations/0010_remove_navigationsettings_footer_teasers.py -------------------------------------------------------------------------------- /tbx/navigation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/navigation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/models.py -------------------------------------------------------------------------------- /tbx/navigation/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/navigation/templatetags/navigation_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/templatetags/navigation_tags.py -------------------------------------------------------------------------------- /tbx/navigation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/navigation/tests/test_link_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/navigation/tests/test_link_block.py -------------------------------------------------------------------------------- /tbx/people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/people/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/blocks.py -------------------------------------------------------------------------------- /tbx/people/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/factories.py -------------------------------------------------------------------------------- /tbx/people/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/forms.py -------------------------------------------------------------------------------- /tbx/people/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0001_initial.py -------------------------------------------------------------------------------- /tbx/people/migrations/0002_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0002_author.py -------------------------------------------------------------------------------- /tbx/people/migrations/0003_populate_authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0003_populate_authors.py -------------------------------------------------------------------------------- /tbx/people/migrations/0004_auto_20190123_1133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0004_auto_20190123_1133.py -------------------------------------------------------------------------------- /tbx/people/migrations/0005_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0005_contact.py -------------------------------------------------------------------------------- /tbx/people/migrations/0006_person_index_page_strapline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0006_person_index_page_strapline.py -------------------------------------------------------------------------------- /tbx/people/migrations/0007_culturepage_culturepagelink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0007_culturepage_culturepagelink.py -------------------------------------------------------------------------------- /tbx/people/migrations/0008_personpage_short_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0008_personpage_short_intro.py -------------------------------------------------------------------------------- /tbx/people/migrations/0009_personpage_alt_short_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0009_personpage_alt_short_intro.py -------------------------------------------------------------------------------- /tbx/people/migrations/0010_contact_default_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0010_contact_default_contact.py -------------------------------------------------------------------------------- /tbx/people/migrations/0011_auto_20190216_1748.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0011_auto_20190216_1748.py -------------------------------------------------------------------------------- /tbx/people/migrations/0012_auto_20190316_1641.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0012_auto_20190316_1641.py -------------------------------------------------------------------------------- /tbx/people/migrations/0013_culturepage_strapline_visible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0013_culturepage_strapline_visible.py -------------------------------------------------------------------------------- /tbx/people/migrations/0014_contactreasonslist_is_default_not_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0014_contactreasonslist_is_default_not_unique.py -------------------------------------------------------------------------------- /tbx/people/migrations/0015_update_streamblock_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0015_update_streamblock_templates.py -------------------------------------------------------------------------------- /tbx/people/migrations/0016_delete_unused_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0016_delete_unused_fields.py -------------------------------------------------------------------------------- /tbx/people/migrations/0017_update_streamblock_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0017_update_streamblock_templates.py -------------------------------------------------------------------------------- /tbx/people/migrations/0018_update_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0018_update_contact.py -------------------------------------------------------------------------------- /tbx/people/migrations/0019_add_key_points_culture_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0019_add_key_points_culture_model.py -------------------------------------------------------------------------------- /tbx/people/migrations/0019_valuespage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0019_valuespage.py -------------------------------------------------------------------------------- /tbx/people/migrations/0020_culturepagekeypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0020_culturepagekeypoint.py -------------------------------------------------------------------------------- /tbx/people/migrations/0020_valuespagevalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0020_valuespagevalue.py -------------------------------------------------------------------------------- /tbx/people/migrations/0021_rename_benefits_on_culturepage_model_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0021_rename_benefits_on_culturepage_model_.py -------------------------------------------------------------------------------- /tbx/people/migrations/0021_valuespagevalue_value_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0021_valuespagevalue_value_image.py -------------------------------------------------------------------------------- /tbx/people/migrations/0022_auto_20210326_1202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0022_auto_20210326_1202.py -------------------------------------------------------------------------------- /tbx/people/migrations/0022_auto_20210412_1042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0022_auto_20210412_1042.py -------------------------------------------------------------------------------- /tbx/people/migrations/0022_culturepage_featured_blogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0022_culturepage_featured_blogs.py -------------------------------------------------------------------------------- /tbx/people/migrations/0023_auto_20210412_1147.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0023_auto_20210412_1147.py -------------------------------------------------------------------------------- /tbx/people/migrations/0023_merge_20210330_1437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0023_merge_20210330_1437.py -------------------------------------------------------------------------------- /tbx/people/migrations/0024_auto_20210412_1428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0024_auto_20210412_1428.py -------------------------------------------------------------------------------- /tbx/people/migrations/0024_auto_20210416_1406.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0024_auto_20210416_1406.py -------------------------------------------------------------------------------- /tbx/people/migrations/0025_auto_20210505_1057.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0025_auto_20210505_1057.py -------------------------------------------------------------------------------- /tbx/people/migrations/0026_culturepage_instagram_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0026_culturepage_instagram_posts.py -------------------------------------------------------------------------------- /tbx/people/migrations/0027_merge_20210603_1719.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0027_merge_20210603_1719.py -------------------------------------------------------------------------------- /tbx/people/migrations/0028_auto_20210604_1234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0028_auto_20210604_1234.py -------------------------------------------------------------------------------- /tbx/people/migrations/0029_auto_20210728_1109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0029_auto_20210728_1109.py -------------------------------------------------------------------------------- /tbx/people/migrations/0030_update_image_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0030_update_image_model.py -------------------------------------------------------------------------------- /tbx/people/migrations/0031_auto_20220422_1515.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0031_auto_20220422_1515.py -------------------------------------------------------------------------------- /tbx/people/migrations/0032_alter_contact_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0032_alter_contact_phone_number.py -------------------------------------------------------------------------------- /tbx/people/migrations/0033_call_to_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0033_call_to_action.py -------------------------------------------------------------------------------- /tbx/people/migrations/0034_add_social_fields_to_all_page_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0034_add_social_fields_to_all_page_types.py -------------------------------------------------------------------------------- /tbx/people/migrations/0035_change_minimum_number_for_key_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/migrations/0035_change_minimum_number_for_key_points.py -------------------------------------------------------------------------------- /tbx/people/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/people/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/models.py -------------------------------------------------------------------------------- /tbx/people/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/people/tests/test_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/people/tests/test_factories.py -------------------------------------------------------------------------------- /tbx/project_styleguide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/project_styleguide/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/apps.py -------------------------------------------------------------------------------- /tbx/project_styleguide/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/forms.py -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/_pattern_library_only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/_pattern_library_only/README.md -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/animated-characters/man.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/animated-characters/man.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/badge/badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/badge/badge.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/badge/badge.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | total: 9 3 | -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/icons/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/icons/icon.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/logo/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/logo/logo.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/menu-button/menu-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/menu-button/menu-button.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/quote-slide/quote-slide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/quote-slide/quote-slide.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/quote-slide/quote-slide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/quote-slide/quote-slide.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/see-more/see-more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/see-more/see-more.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/see-more/see-more.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/see-more/see-more.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/skip-link/skip-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/skip-link/skip-link.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/sprites/sprites-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/sprites/sprites-preview.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/sprites/sprites-preview.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | is_pattern_library: True 3 | -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/sprites/sprites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/sprites/sprites.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/tag/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/tag/tag.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/atoms/tag/tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/atoms/tag/tag.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/base.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/base_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/base_page.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/author/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/author/author.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/author/author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/author/author.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/blog-item/blog-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/blog-item/blog-item.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/blog-item/blog-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/blog-item/blog-item.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/card/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/card/card.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/card/card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/card/card.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/hero/hero--service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/hero/hero--service.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/hero/hero--service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/hero/hero--service.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/hero/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/hero/hero.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/hero/hero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/hero/hero.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/hero/report_hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/hero/report_hero.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/job-item/job-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/job-item/job-item.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/job-item/job-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/job-item/job-item.yaml -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/list-item/list-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/wagtail-torchbox/HEAD/tbx/project_styleguide/templates/patterns/molecules/list-item/list-item.html -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/navigation/footer-top-links.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/navigation/mobile-nav.yaml: -------------------------------------------------------------------------------- 1 | context: 2 | job_count: 6 3 | -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/streamfield/blocks/embed_block.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/streamfield/blocks/external_story_block.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tbx/project_styleguide/templates/patterns/molecules/streamfield/blocks/heading2_block.html: -------------------------------------------------------------------------------- 1 |