├── .build └── .gitkeep ├── .gitignore ├── Gruntfile.coffee ├── README.md ├── package.json └── theme ├── assets └── scss │ ├── _custom.scss │ ├── _normalize.scss │ └── styles.scss ├── config ├── settings_data.json └── settings_schema.json ├── layout └── theme.liquid ├── locales └── en.default.json ├── snippets ├── collection-view.liquid ├── pagination.liquid └── swatch.liquid └── templates ├── 404.liquid ├── article.liquid ├── blog.liquid ├── cart.liquid ├── collection.liquid ├── collection.list.liquid ├── customers ├── account.liquid ├── activate_account.liquid ├── addresses.liquid ├── login.liquid ├── order.liquid ├── register.liquid └── reset_password.liquid ├── index.liquid ├── page.liquid ├── product.liquid └── search.liquid /.build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/package.json -------------------------------------------------------------------------------- /theme/assets/scss/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/assets/scss/_custom.scss -------------------------------------------------------------------------------- /theme/assets/scss/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/assets/scss/_normalize.scss -------------------------------------------------------------------------------- /theme/assets/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/assets/scss/styles.scss -------------------------------------------------------------------------------- /theme/config/settings_data.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /theme/config/settings_schema.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] -------------------------------------------------------------------------------- /theme/layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/layout/theme.liquid -------------------------------------------------------------------------------- /theme/locales/en.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/locales/en.default.json -------------------------------------------------------------------------------- /theme/snippets/collection-view.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/snippets/collection-view.liquid -------------------------------------------------------------------------------- /theme/snippets/pagination.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/snippets/pagination.liquid -------------------------------------------------------------------------------- /theme/snippets/swatch.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/snippets/swatch.liquid -------------------------------------------------------------------------------- /theme/templates/404.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/article.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/blog.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/cart.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/templates/cart.liquid -------------------------------------------------------------------------------- /theme/templates/collection.liquid: -------------------------------------------------------------------------------- 1 | {% include 'collection-view' with 'grid' %} 2 | -------------------------------------------------------------------------------- /theme/templates/collection.list.liquid: -------------------------------------------------------------------------------- 1 | {% include 'collection-view' with 'list' %} 2 | -------------------------------------------------------------------------------- /theme/templates/customers/account.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/customers/activate_account.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/customers/addresses.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/customers/login.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/customers/order.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/customers/register.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/customers/reset_password.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/index.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/page.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/product.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinballard/skillshare-examples/HEAD/theme/templates/product.liquid -------------------------------------------------------------------------------- /theme/templates/search.liquid: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------