{% trans "Welcome to your new Wagtail site!" %}
27 |{% trans 'Please feel free to join our community on Slack, or get started with one of the links below.' %}
28 |├── blog ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0002_blogpostpage_body.py │ └── 0001_initial.py ├── admin.py ├── tests.py ├── views.py ├── apps.py ├── templates │ └── blog │ │ └── blog_post_page.html └── models.py ├── home ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0003_homepage_subtitle.py │ ├── 0004_homepage_image.py │ ├── 0005_homepage_linked_page.py │ ├── 0001_initial.py │ └── 0002_create_homepage.py ├── templatetags │ ├── __init__.py │ └── global_navigation.py ├── models.py ├── templates │ └── home │ │ ├── home_page.html │ │ └── welcome_page.html └── static │ └── css │ └── welcome_page.css ├── search ├── __init__.py ├── views.py └── templates │ └── search │ └── search.html ├── mystore ├── __init__.py ├── settings │ ├── __init__.py │ ├── production.py │ ├── dev.py │ └── base.py ├── static │ ├── js │ │ └── mystore.js │ └── css │ │ └── mystore.css ├── templates │ ├── blocks │ │ ├── title_block.html │ │ ├── image_block.html │ │ └── title_and_subtitle_block.html │ ├── 404.html │ ├── 500.html │ ├── blog │ │ └── blog_index_page.html │ └── base.html ├── wsgi.py └── urls.py ├── products ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0005_productdetailpage_category.py │ ├── 0003_productdetailpage_body.py │ ├── 0004_productcategory.py │ ├── 0001_initial.py │ └── 0002_productimages.py ├── admin.py ├── tests.py ├── views.py ├── apps.py ├── blocks.py ├── templates │ └── products │ │ └── product_detail_page.html └── models.py ├── .gitignore ├── requirements.txt ├── manage.py ├── .dockerignore └── Dockerfile /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystore/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystore/static/js/mystore.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystore/static/css/mystore.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystore/templates/blocks/title_block.html: -------------------------------------------------------------------------------- 1 |
{% trans 'Please feel free to join our community on Slack, or get started with one of the links below.' %}
28 |