├── .babelrc ├── .gitignore ├── .theme-check.yml ├── .vscode └── extensions.json ├── package.json ├── postcss.config.js ├── readme.md ├── rollup.config.js ├── src ├── LICENSE.md ├── README.md ├── assets │ ├── base.css │ ├── cart-notification.js │ ├── cart.js │ ├── collage.css │ ├── collection-filters-form.js │ ├── component-accordion.css │ ├── component-article-card.css │ ├── component-badge.css │ ├── component-card.css │ ├── component-cart-items.css │ ├── component-cart-notification.css │ ├── component-cart.css │ ├── component-collection-hero.css │ ├── component-deferred-media.css │ ├── component-discounts.css │ ├── component-image-with-text.css │ ├── component-list-menu.css │ ├── component-list-payment.css │ ├── component-list-social.css │ ├── component-loading-overlay.css │ ├── component-menu-drawer.css │ ├── component-model-viewer-ui.css │ ├── component-newsletter.css │ ├── component-pagination.css │ ├── component-pickup-availability.css │ ├── component-price.css │ ├── component-product-model.css │ ├── component-rte.css │ ├── component-search.css │ ├── component-slider.css │ ├── component-totals.css │ ├── customer.css │ ├── customer.js │ ├── details-disclosure.js │ ├── details-modal.js │ ├── disclosure.css │ ├── global.js │ ├── newsletter-section.css │ ├── password-modal.js │ ├── pickup-availability.js │ ├── product-form.js │ ├── product-model.js │ ├── section-blog-post.css │ ├── section-collection-list.css │ ├── section-contact-form.css │ ├── section-featured-blog.css │ ├── section-footer.css │ ├── section-image-banner.css │ ├── section-main-blog.css │ ├── section-main-page.css │ ├── section-main-product.css │ ├── section-multicolumn.css │ ├── section-password.css │ ├── section-product-recommendations.css │ ├── section-rich-text.css │ ├── share.js │ ├── slider.js │ ├── template-collection.css │ ├── template-giftcard.css │ └── variants.js ├── config │ ├── settings_data.json │ └── settings_schema.json ├── layout │ ├── password.liquid │ └── theme.liquid ├── locales │ ├── bg-BG.json │ ├── cs.json │ ├── cs.schema.json │ ├── da.json │ ├── da.schema.json │ ├── de.json │ ├── de.schema.json │ ├── el.json │ ├── en.default.json │ ├── en.default.schema.json │ ├── es.json │ ├── es.schema.json │ ├── fi.json │ ├── fi.schema.json │ ├── fr.json │ ├── fr.schema.json │ ├── hr-HR.json │ ├── hu.json │ ├── id.json │ ├── it.json │ ├── it.schema.json │ ├── ja.json │ ├── ja.schema.json │ ├── ko.json │ ├── ko.schema.json │ ├── lt-LT.json │ ├── nb.json │ ├── nb.schema.json │ ├── nl.json │ ├── nl.schema.json │ ├── pl.json │ ├── pl.schema.json │ ├── pt-BR.json │ ├── pt-BR.schema.json │ ├── pt-PT.json │ ├── pt-PT.schema.json │ ├── ro-RO.json │ ├── ru.json │ ├── sk-SK.json │ ├── sl-SI.json │ ├── sv.json │ ├── sv.schema.json │ ├── th.json │ ├── th.schema.json │ ├── tr.json │ ├── tr.schema.json │ ├── vi.json │ ├── vi.schema.json │ ├── zh-CN.json │ ├── zh-CN.schema.json │ ├── zh-TW.json │ └── zh-TW.schema.json ├── scripts │ ├── sections │ │ ├── header.js │ │ └── image-banner.js │ ├── theme.js │ └── utils │ │ └── operations.js ├── sections │ ├── announcement-bar.liquid │ ├── apps.liquid │ ├── cart-icon-bubble.liquid │ ├── cart-live-region-text.liquid │ ├── cart-notification-button.liquid │ ├── cart-notification-product.liquid │ ├── collage.liquid │ ├── collection-list.liquid │ ├── contact-form.liquid │ ├── custom-liquid.liquid │ ├── featured-blog.liquid │ ├── featured-collection.liquid │ ├── footer.liquid │ ├── header.liquid │ ├── image-banner.liquid │ ├── image-with-text.liquid │ ├── main-404.liquid │ ├── main-article.liquid │ ├── main-blog.liquid │ ├── main-cart-footer.liquid │ ├── main-cart-items.liquid │ ├── main-collection-banner.liquid │ ├── main-collection-product-grid.liquid │ ├── main-list-collections.liquid │ ├── main-page.liquid │ ├── main-password-footer.liquid │ ├── main-password-header.liquid │ ├── main-product.liquid │ ├── main-search.liquid │ ├── multicolumn.liquid │ ├── newsletter.liquid │ ├── page.liquid │ ├── pickup-availability.liquid │ ├── product-recommendations.liquid │ └── rich-text.liquid ├── snippets │ ├── article-card.liquid │ ├── cart-notification.liquid │ ├── icon-3d-model.liquid │ ├── icon-accordion.liquid │ ├── icon-account.liquid │ ├── icon-arrow.liquid │ ├── icon-caret.liquid │ ├── icon-cart-empty.liquid │ ├── icon-cart.liquid │ ├── icon-checkmark.liquid │ ├── icon-clipboard.liquid │ ├── icon-close-small.liquid │ ├── icon-close.liquid │ ├── icon-discount.liquid │ ├── icon-error.liquid │ ├── icon-facebook.liquid │ ├── icon-filter.liquid │ ├── icon-hamburger.liquid │ ├── icon-instagram.liquid │ ├── icon-minus.liquid │ ├── icon-padlock.liquid │ ├── icon-pinterest.liquid │ ├── icon-play.liquid │ ├── icon-plus.liquid │ ├── icon-remove.liquid │ ├── icon-share.liquid │ ├── icon-snapchat.liquid │ ├── icon-success.liquid │ ├── icon-tick.liquid │ ├── icon-tiktok.liquid │ ├── icon-tumblr.liquid │ ├── icon-twitter.liquid │ ├── icon-unavailable.liquid │ ├── icon-vimeo.liquid │ ├── icon-youtube.liquid │ ├── icon-zoom.liquid │ ├── meta-tags.liquid │ ├── pagination.liquid │ ├── price.liquid │ ├── product-card-placeholder.liquid │ ├── product-card.liquid │ ├── product-thumbnail.liquid │ └── social-sharing.liquid ├── styles │ ├── sections │ │ ├── header.css │ │ └── image-banner.css │ ├── theme.css │ └── utils │ │ ├── autocomplete.css │ │ └── base.css ├── templates │ ├── 404.json │ ├── article.json │ ├── blog.json │ ├── cart.json │ ├── collection.json │ ├── customers │ │ ├── account.liquid │ │ ├── activate_account.liquid │ │ ├── addresses.liquid │ │ ├── login.liquid │ │ ├── order.liquid │ │ ├── register.liquid │ │ └── reset_password.liquid │ ├── gift_card.liquid │ ├── index.json │ ├── list-collections.json │ ├── page.contact.json │ ├── page.json │ ├── password.json │ ├── product.json │ └── search.json └── translation.yml └── tailwind.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.theme-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/.theme-check.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/LICENSE.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/README.md -------------------------------------------------------------------------------- /src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/base.css -------------------------------------------------------------------------------- /src/assets/cart-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/cart-notification.js -------------------------------------------------------------------------------- /src/assets/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/cart.js -------------------------------------------------------------------------------- /src/assets/collage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/collage.css -------------------------------------------------------------------------------- /src/assets/collection-filters-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/collection-filters-form.js -------------------------------------------------------------------------------- /src/assets/component-accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-accordion.css -------------------------------------------------------------------------------- /src/assets/component-article-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-article-card.css -------------------------------------------------------------------------------- /src/assets/component-badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-badge.css -------------------------------------------------------------------------------- /src/assets/component-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-card.css -------------------------------------------------------------------------------- /src/assets/component-cart-items.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-cart-items.css -------------------------------------------------------------------------------- /src/assets/component-cart-notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-cart-notification.css -------------------------------------------------------------------------------- /src/assets/component-cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-cart.css -------------------------------------------------------------------------------- /src/assets/component-collection-hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-collection-hero.css -------------------------------------------------------------------------------- /src/assets/component-deferred-media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-deferred-media.css -------------------------------------------------------------------------------- /src/assets/component-discounts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-discounts.css -------------------------------------------------------------------------------- /src/assets/component-image-with-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-image-with-text.css -------------------------------------------------------------------------------- /src/assets/component-list-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-list-menu.css -------------------------------------------------------------------------------- /src/assets/component-list-payment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-list-payment.css -------------------------------------------------------------------------------- /src/assets/component-list-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-list-social.css -------------------------------------------------------------------------------- /src/assets/component-loading-overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-loading-overlay.css -------------------------------------------------------------------------------- /src/assets/component-menu-drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-menu-drawer.css -------------------------------------------------------------------------------- /src/assets/component-model-viewer-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-model-viewer-ui.css -------------------------------------------------------------------------------- /src/assets/component-newsletter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-newsletter.css -------------------------------------------------------------------------------- /src/assets/component-pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-pagination.css -------------------------------------------------------------------------------- /src/assets/component-pickup-availability.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-pickup-availability.css -------------------------------------------------------------------------------- /src/assets/component-price.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-price.css -------------------------------------------------------------------------------- /src/assets/component-product-model.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-product-model.css -------------------------------------------------------------------------------- /src/assets/component-rte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-rte.css -------------------------------------------------------------------------------- /src/assets/component-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-search.css -------------------------------------------------------------------------------- /src/assets/component-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-slider.css -------------------------------------------------------------------------------- /src/assets/component-totals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/component-totals.css -------------------------------------------------------------------------------- /src/assets/customer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/customer.css -------------------------------------------------------------------------------- /src/assets/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/customer.js -------------------------------------------------------------------------------- /src/assets/details-disclosure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/details-disclosure.js -------------------------------------------------------------------------------- /src/assets/details-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/details-modal.js -------------------------------------------------------------------------------- /src/assets/disclosure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/disclosure.css -------------------------------------------------------------------------------- /src/assets/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/global.js -------------------------------------------------------------------------------- /src/assets/newsletter-section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/newsletter-section.css -------------------------------------------------------------------------------- /src/assets/password-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/password-modal.js -------------------------------------------------------------------------------- /src/assets/pickup-availability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/pickup-availability.js -------------------------------------------------------------------------------- /src/assets/product-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/product-form.js -------------------------------------------------------------------------------- /src/assets/product-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/product-model.js -------------------------------------------------------------------------------- /src/assets/section-blog-post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-blog-post.css -------------------------------------------------------------------------------- /src/assets/section-collection-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-collection-list.css -------------------------------------------------------------------------------- /src/assets/section-contact-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-contact-form.css -------------------------------------------------------------------------------- /src/assets/section-featured-blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-featured-blog.css -------------------------------------------------------------------------------- /src/assets/section-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-footer.css -------------------------------------------------------------------------------- /src/assets/section-image-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-image-banner.css -------------------------------------------------------------------------------- /src/assets/section-main-blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-main-blog.css -------------------------------------------------------------------------------- /src/assets/section-main-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-main-page.css -------------------------------------------------------------------------------- /src/assets/section-main-product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-main-product.css -------------------------------------------------------------------------------- /src/assets/section-multicolumn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-multicolumn.css -------------------------------------------------------------------------------- /src/assets/section-password.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-password.css -------------------------------------------------------------------------------- /src/assets/section-product-recommendations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-product-recommendations.css -------------------------------------------------------------------------------- /src/assets/section-rich-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/section-rich-text.css -------------------------------------------------------------------------------- /src/assets/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/share.js -------------------------------------------------------------------------------- /src/assets/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/slider.js -------------------------------------------------------------------------------- /src/assets/template-collection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/template-collection.css -------------------------------------------------------------------------------- /src/assets/template-giftcard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/template-giftcard.css -------------------------------------------------------------------------------- /src/assets/variants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/assets/variants.js -------------------------------------------------------------------------------- /src/config/settings_data.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/config/settings_schema.json -------------------------------------------------------------------------------- /src/layout/password.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/layout/password.liquid -------------------------------------------------------------------------------- /src/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/layout/theme.liquid -------------------------------------------------------------------------------- /src/locales/bg-BG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/bg-BG.json -------------------------------------------------------------------------------- /src/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/cs.json -------------------------------------------------------------------------------- /src/locales/cs.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/cs.schema.json -------------------------------------------------------------------------------- /src/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/da.json -------------------------------------------------------------------------------- /src/locales/da.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/da.schema.json -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/de.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/de.schema.json -------------------------------------------------------------------------------- /src/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/el.json -------------------------------------------------------------------------------- /src/locales/en.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/en.default.json -------------------------------------------------------------------------------- /src/locales/en.default.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/en.default.schema.json -------------------------------------------------------------------------------- /src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/es.json -------------------------------------------------------------------------------- /src/locales/es.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/es.schema.json -------------------------------------------------------------------------------- /src/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/fi.json -------------------------------------------------------------------------------- /src/locales/fi.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/fi.schema.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/locales/fr.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/fr.schema.json -------------------------------------------------------------------------------- /src/locales/hr-HR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/hr-HR.json -------------------------------------------------------------------------------- /src/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/hu.json -------------------------------------------------------------------------------- /src/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/id.json -------------------------------------------------------------------------------- /src/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/it.json -------------------------------------------------------------------------------- /src/locales/it.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/it.schema.json -------------------------------------------------------------------------------- /src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/ja.json -------------------------------------------------------------------------------- /src/locales/ja.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/ja.schema.json -------------------------------------------------------------------------------- /src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/ko.json -------------------------------------------------------------------------------- /src/locales/ko.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/ko.schema.json -------------------------------------------------------------------------------- /src/locales/lt-LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/lt-LT.json -------------------------------------------------------------------------------- /src/locales/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/nb.json -------------------------------------------------------------------------------- /src/locales/nb.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/nb.schema.json -------------------------------------------------------------------------------- /src/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/nl.json -------------------------------------------------------------------------------- /src/locales/nl.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/nl.schema.json -------------------------------------------------------------------------------- /src/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/pl.json -------------------------------------------------------------------------------- /src/locales/pl.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/pl.schema.json -------------------------------------------------------------------------------- /src/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/pt-BR.json -------------------------------------------------------------------------------- /src/locales/pt-BR.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/pt-BR.schema.json -------------------------------------------------------------------------------- /src/locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/pt-PT.json -------------------------------------------------------------------------------- /src/locales/pt-PT.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/pt-PT.schema.json -------------------------------------------------------------------------------- /src/locales/ro-RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/ro-RO.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/locales/sk-SK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/sk-SK.json -------------------------------------------------------------------------------- /src/locales/sl-SI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/sl-SI.json -------------------------------------------------------------------------------- /src/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/sv.json -------------------------------------------------------------------------------- /src/locales/sv.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/sv.schema.json -------------------------------------------------------------------------------- /src/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/th.json -------------------------------------------------------------------------------- /src/locales/th.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/th.schema.json -------------------------------------------------------------------------------- /src/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/tr.json -------------------------------------------------------------------------------- /src/locales/tr.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/tr.schema.json -------------------------------------------------------------------------------- /src/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/vi.json -------------------------------------------------------------------------------- /src/locales/vi.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/vi.schema.json -------------------------------------------------------------------------------- /src/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/zh-CN.json -------------------------------------------------------------------------------- /src/locales/zh-CN.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/zh-CN.schema.json -------------------------------------------------------------------------------- /src/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/zh-TW.json -------------------------------------------------------------------------------- /src/locales/zh-TW.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/locales/zh-TW.schema.json -------------------------------------------------------------------------------- /src/scripts/sections/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/scripts/sections/header.js -------------------------------------------------------------------------------- /src/scripts/sections/image-banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/scripts/sections/image-banner.js -------------------------------------------------------------------------------- /src/scripts/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/scripts/theme.js -------------------------------------------------------------------------------- /src/scripts/utils/operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/scripts/utils/operations.js -------------------------------------------------------------------------------- /src/sections/announcement-bar.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/announcement-bar.liquid -------------------------------------------------------------------------------- /src/sections/apps.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/apps.liquid -------------------------------------------------------------------------------- /src/sections/cart-icon-bubble.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/cart-icon-bubble.liquid -------------------------------------------------------------------------------- /src/sections/cart-live-region-text.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/cart-live-region-text.liquid -------------------------------------------------------------------------------- /src/sections/cart-notification-button.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/cart-notification-button.liquid -------------------------------------------------------------------------------- /src/sections/cart-notification-product.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/cart-notification-product.liquid -------------------------------------------------------------------------------- /src/sections/collage.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/collage.liquid -------------------------------------------------------------------------------- /src/sections/collection-list.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/collection-list.liquid -------------------------------------------------------------------------------- /src/sections/contact-form.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/contact-form.liquid -------------------------------------------------------------------------------- /src/sections/custom-liquid.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/custom-liquid.liquid -------------------------------------------------------------------------------- /src/sections/featured-blog.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/featured-blog.liquid -------------------------------------------------------------------------------- /src/sections/featured-collection.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/featured-collection.liquid -------------------------------------------------------------------------------- /src/sections/footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/footer.liquid -------------------------------------------------------------------------------- /src/sections/header.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/header.liquid -------------------------------------------------------------------------------- /src/sections/image-banner.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/image-banner.liquid -------------------------------------------------------------------------------- /src/sections/image-with-text.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/image-with-text.liquid -------------------------------------------------------------------------------- /src/sections/main-404.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-404.liquid -------------------------------------------------------------------------------- /src/sections/main-article.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-article.liquid -------------------------------------------------------------------------------- /src/sections/main-blog.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-blog.liquid -------------------------------------------------------------------------------- /src/sections/main-cart-footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-cart-footer.liquid -------------------------------------------------------------------------------- /src/sections/main-cart-items.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-cart-items.liquid -------------------------------------------------------------------------------- /src/sections/main-collection-banner.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-collection-banner.liquid -------------------------------------------------------------------------------- /src/sections/main-collection-product-grid.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-collection-product-grid.liquid -------------------------------------------------------------------------------- /src/sections/main-list-collections.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-list-collections.liquid -------------------------------------------------------------------------------- /src/sections/main-page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-page.liquid -------------------------------------------------------------------------------- /src/sections/main-password-footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-password-footer.liquid -------------------------------------------------------------------------------- /src/sections/main-password-header.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-password-header.liquid -------------------------------------------------------------------------------- /src/sections/main-product.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-product.liquid -------------------------------------------------------------------------------- /src/sections/main-search.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/main-search.liquid -------------------------------------------------------------------------------- /src/sections/multicolumn.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/multicolumn.liquid -------------------------------------------------------------------------------- /src/sections/newsletter.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/newsletter.liquid -------------------------------------------------------------------------------- /src/sections/page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/page.liquid -------------------------------------------------------------------------------- /src/sections/pickup-availability.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/pickup-availability.liquid -------------------------------------------------------------------------------- /src/sections/product-recommendations.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/product-recommendations.liquid -------------------------------------------------------------------------------- /src/sections/rich-text.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/sections/rich-text.liquid -------------------------------------------------------------------------------- /src/snippets/article-card.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/article-card.liquid -------------------------------------------------------------------------------- /src/snippets/cart-notification.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/cart-notification.liquid -------------------------------------------------------------------------------- /src/snippets/icon-3d-model.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-3d-model.liquid -------------------------------------------------------------------------------- /src/snippets/icon-accordion.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-accordion.liquid -------------------------------------------------------------------------------- /src/snippets/icon-account.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-account.liquid -------------------------------------------------------------------------------- /src/snippets/icon-arrow.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-arrow.liquid -------------------------------------------------------------------------------- /src/snippets/icon-caret.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-caret.liquid -------------------------------------------------------------------------------- /src/snippets/icon-cart-empty.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-cart-empty.liquid -------------------------------------------------------------------------------- /src/snippets/icon-cart.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-cart.liquid -------------------------------------------------------------------------------- /src/snippets/icon-checkmark.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-checkmark.liquid -------------------------------------------------------------------------------- /src/snippets/icon-clipboard.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-clipboard.liquid -------------------------------------------------------------------------------- /src/snippets/icon-close-small.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-close-small.liquid -------------------------------------------------------------------------------- /src/snippets/icon-close.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-close.liquid -------------------------------------------------------------------------------- /src/snippets/icon-discount.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-discount.liquid -------------------------------------------------------------------------------- /src/snippets/icon-error.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-error.liquid -------------------------------------------------------------------------------- /src/snippets/icon-facebook.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-facebook.liquid -------------------------------------------------------------------------------- /src/snippets/icon-filter.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-filter.liquid -------------------------------------------------------------------------------- /src/snippets/icon-hamburger.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-hamburger.liquid -------------------------------------------------------------------------------- /src/snippets/icon-instagram.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-instagram.liquid -------------------------------------------------------------------------------- /src/snippets/icon-minus.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-minus.liquid -------------------------------------------------------------------------------- /src/snippets/icon-padlock.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-padlock.liquid -------------------------------------------------------------------------------- /src/snippets/icon-pinterest.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-pinterest.liquid -------------------------------------------------------------------------------- /src/snippets/icon-play.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-play.liquid -------------------------------------------------------------------------------- /src/snippets/icon-plus.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-plus.liquid -------------------------------------------------------------------------------- /src/snippets/icon-remove.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-remove.liquid -------------------------------------------------------------------------------- /src/snippets/icon-share.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-share.liquid -------------------------------------------------------------------------------- /src/snippets/icon-snapchat.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-snapchat.liquid -------------------------------------------------------------------------------- /src/snippets/icon-success.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-success.liquid -------------------------------------------------------------------------------- /src/snippets/icon-tick.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-tick.liquid -------------------------------------------------------------------------------- /src/snippets/icon-tiktok.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-tiktok.liquid -------------------------------------------------------------------------------- /src/snippets/icon-tumblr.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-tumblr.liquid -------------------------------------------------------------------------------- /src/snippets/icon-twitter.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-twitter.liquid -------------------------------------------------------------------------------- /src/snippets/icon-unavailable.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-unavailable.liquid -------------------------------------------------------------------------------- /src/snippets/icon-vimeo.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-vimeo.liquid -------------------------------------------------------------------------------- /src/snippets/icon-youtube.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-youtube.liquid -------------------------------------------------------------------------------- /src/snippets/icon-zoom.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/icon-zoom.liquid -------------------------------------------------------------------------------- /src/snippets/meta-tags.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/meta-tags.liquid -------------------------------------------------------------------------------- /src/snippets/pagination.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/pagination.liquid -------------------------------------------------------------------------------- /src/snippets/price.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/price.liquid -------------------------------------------------------------------------------- /src/snippets/product-card-placeholder.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/product-card-placeholder.liquid -------------------------------------------------------------------------------- /src/snippets/product-card.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/product-card.liquid -------------------------------------------------------------------------------- /src/snippets/product-thumbnail.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/product-thumbnail.liquid -------------------------------------------------------------------------------- /src/snippets/social-sharing.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/snippets/social-sharing.liquid -------------------------------------------------------------------------------- /src/styles/sections/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/styles/sections/header.css -------------------------------------------------------------------------------- /src/styles/sections/image-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/styles/sections/image-banner.css -------------------------------------------------------------------------------- /src/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/styles/theme.css -------------------------------------------------------------------------------- /src/styles/utils/autocomplete.css: -------------------------------------------------------------------------------- 1 | .autocomplete { 2 | color: #777; 3 | } -------------------------------------------------------------------------------- /src/styles/utils/base.css: -------------------------------------------------------------------------------- 1 | .special_input { 2 | appearance: none; 3 | } -------------------------------------------------------------------------------- /src/templates/404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/404.json -------------------------------------------------------------------------------- /src/templates/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/article.json -------------------------------------------------------------------------------- /src/templates/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/blog.json -------------------------------------------------------------------------------- /src/templates/cart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/cart.json -------------------------------------------------------------------------------- /src/templates/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/collection.json -------------------------------------------------------------------------------- /src/templates/customers/account.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/account.liquid -------------------------------------------------------------------------------- /src/templates/customers/activate_account.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/activate_account.liquid -------------------------------------------------------------------------------- /src/templates/customers/addresses.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/addresses.liquid -------------------------------------------------------------------------------- /src/templates/customers/login.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/login.liquid -------------------------------------------------------------------------------- /src/templates/customers/order.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/order.liquid -------------------------------------------------------------------------------- /src/templates/customers/register.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/register.liquid -------------------------------------------------------------------------------- /src/templates/customers/reset_password.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/customers/reset_password.liquid -------------------------------------------------------------------------------- /src/templates/gift_card.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/gift_card.liquid -------------------------------------------------------------------------------- /src/templates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/index.json -------------------------------------------------------------------------------- /src/templates/list-collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/list-collections.json -------------------------------------------------------------------------------- /src/templates/page.contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/page.contact.json -------------------------------------------------------------------------------- /src/templates/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/page.json -------------------------------------------------------------------------------- /src/templates/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/password.json -------------------------------------------------------------------------------- /src/templates/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/product.json -------------------------------------------------------------------------------- /src/templates/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/templates/search.json -------------------------------------------------------------------------------- /src/translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/src/translation.yml -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylehatch/hatch/HEAD/tailwind.config.js --------------------------------------------------------------------------------