├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.json ├── .shopifyignore ├── LICENSE ├── README.md ├── assets ├── .vite │ └── manifest.json ├── entry.YiHgjETv.min.css └── entry.theme.-1DTOjwF.min.js ├── components ├── counter.js └── index.js ├── config ├── settings_data.json └── settings_schema.json ├── entry.theme.js ├── layout └── theme.liquid ├── locales └── en.default.json ├── package.json ├── postcss.config.js ├── sections ├── main-404.liquid └── main-section.liquid ├── shopify.theme.toml ├── snippets ├── development-screen-indicator.liquid ├── entry.liquid ├── image.liquid └── typography.liquid ├── styles └── tailwind.css ├── tailwind.config.ts ├── templates ├── 404.json ├── article.json ├── blog.json ├── cart.json ├── collection.json ├── customers │ ├── account.json │ ├── activate_account.json │ ├── addresses.json │ ├── login.json │ ├── order.json │ ├── register.json │ └── reset_password.json ├── gift_card.liquid ├── index.json ├── list-collections.json ├── page.json ├── password.json ├── product.json └── search.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.shopifyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/.shopifyignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/README.md -------------------------------------------------------------------------------- /assets/.vite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/assets/.vite/manifest.json -------------------------------------------------------------------------------- /assets/entry.YiHgjETv.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/assets/entry.YiHgjETv.min.css -------------------------------------------------------------------------------- /assets/entry.theme.-1DTOjwF.min.js: -------------------------------------------------------------------------------- 1 | function o(n){return n+1}console.log(o(1)); 2 | -------------------------------------------------------------------------------- /components/counter.js: -------------------------------------------------------------------------------- 1 | export function counter (num) { 2 | return num + 1 3 | } 4 | -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/components/index.js -------------------------------------------------------------------------------- /config/settings_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/config/settings_data.json -------------------------------------------------------------------------------- /config/settings_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/config/settings_schema.json -------------------------------------------------------------------------------- /entry.theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/entry.theme.js -------------------------------------------------------------------------------- /layout/theme.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/layout/theme.liquid -------------------------------------------------------------------------------- /locales/en.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/locales/en.default.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /sections/main-404.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/sections/main-404.liquid -------------------------------------------------------------------------------- /sections/main-section.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/sections/main-section.liquid -------------------------------------------------------------------------------- /shopify.theme.toml: -------------------------------------------------------------------------------- 1 | [environments.dev] 2 | store = "odestry.myshopify.com" 3 | 4 | -------------------------------------------------------------------------------- /snippets/development-screen-indicator.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/snippets/development-screen-indicator.liquid -------------------------------------------------------------------------------- /snippets/entry.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/snippets/entry.liquid -------------------------------------------------------------------------------- /snippets/image.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/snippets/image.liquid -------------------------------------------------------------------------------- /snippets/typography.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/snippets/typography.liquid -------------------------------------------------------------------------------- /styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/styles/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /templates/404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/404.json -------------------------------------------------------------------------------- /templates/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/article.json -------------------------------------------------------------------------------- /templates/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/blog.json -------------------------------------------------------------------------------- /templates/cart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/cart.json -------------------------------------------------------------------------------- /templates/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/collection.json -------------------------------------------------------------------------------- /templates/customers/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/account.json -------------------------------------------------------------------------------- /templates/customers/activate_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/activate_account.json -------------------------------------------------------------------------------- /templates/customers/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/addresses.json -------------------------------------------------------------------------------- /templates/customers/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/login.json -------------------------------------------------------------------------------- /templates/customers/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/order.json -------------------------------------------------------------------------------- /templates/customers/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/register.json -------------------------------------------------------------------------------- /templates/customers/reset_password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/customers/reset_password.json -------------------------------------------------------------------------------- /templates/gift_card.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/gift_card.liquid -------------------------------------------------------------------------------- /templates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/index.json -------------------------------------------------------------------------------- /templates/list-collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/list-collections.json -------------------------------------------------------------------------------- /templates/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/page.json -------------------------------------------------------------------------------- /templates/password.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/password.json -------------------------------------------------------------------------------- /templates/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/product.json -------------------------------------------------------------------------------- /templates/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/templates/search.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odestry/theme-starter/HEAD/vite.config.ts --------------------------------------------------------------------------------