Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blanklob committed Aug 9, 2024
1 parent 7095eb8 commit 50b516b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 31 deletions.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat&colorA=338fbb&colorB=1c1c1c&logoColor=ffffff)](https://github.com/odestry/.github/blob/main/CONTRIBUTING.md)
[![CI](https://img.shields.io/github/actions/workflow/status/odestry/theme-development-helpers/ci.yml?style=flat&label=CI&colorA=338fbb&colorB=1c1c1c&logoColor=ffffff)](https://github.com/odestry/theme-development-helpers/blob/main/.github/workflows/ci.yml)
[![Discord Shield](https://img.shields.io/discord/983602196493004820?style=flat&colorA=338fbb&colorB=1c1c1c&label=discord&logo=discord&logoColor=ffffff)](https://discord.gg/blanklob-community-983602196493004820)
[![Discord Shield](https://img.shields.io/discord/983602196493004820?style=flat&colorA=338fbb&colorB=1c1c1c&label=discord&logo=discord&logoColor=ffffff)](https://odestry.com/community)

[Usage](#usage) |
[Tools](#tools) |
[Contributing](#contributing) |
[About](#about) |
[License](#license)

A growing collection of useful helpers and fully functional, ready-made utils for Shopify theme development. If you make a snippet that is generic enough to be useful to others, think about [CONTRIBUTING](#contributing).
Expand Down Expand Up @@ -35,9 +37,9 @@ You can navigate these snippets by using the table below.
| [Meta](#meta) | [Social share](#social-share) | A small snippet to render all necessary meta tags for social sharing and page previews on socials. |
| [UI](#ui) | [Image](#image) | A powerful, less opinionated image snippet built on top of evergreen web technologies for Shopify storefronts. |
| [UI](#ui) | [Shop pay button](#shop-pay-button) | Pure liquid dynamic Shop pay button for express checkout. |
| [SEO](#seo) | [Schema website](#schema-website) | Renders the schema.org website JSON-LD for Site Name. |
| [SEO](#seo) | [Schema organization](#schema-organization) | Renders the schema.org JSON-LD for Brand and Organization. |
| [SEO](#seo) | [Schema article](#schema-article) | Renders the schema.org JSON-LD for a blog post or an article. |
| [Schemas](#schemas) | [Schema website](#schema-website) | Renders the schema.org website JSON-LD for Site Name. |
| [Schemas](#schemas) | [Schema organization](#schema-organization) | Renders the schema.org JSON-LD for Brand and Organization. |
| [Schemas](#schemas) | [Schema article](#schema-article) | Renders the schema.org JSON-LD for a blog post or an article. |

## Tools

Expand Down Expand Up @@ -102,15 +104,15 @@ You can also check Shopify [recommandations](https://help.shopify.com/manual/onl

To debug your social share previews, you can use the [Facebook Sharing Debugger](https://developers.facebook.com/tools/debug/) and the [Twitter Card Validator](https://cards-dev.twitter.com/validator).

## SEO
## Schemas

These JSON-LD snippets are based on the [Schema.org](https://schema.org) vocabulary and are used to improve the display of your pages on search engines.

### Schema website

Renders the schema.org website JSON-LD for Site Names.

Copy code from [this file](./seo/schema-website.liquid).
Copy code from [this file](./schemas/schema-website.liquid).

```liquid
{% render 'schema-website' %}
Expand All @@ -122,7 +124,7 @@ Copy code from [this file](./seo/schema-website.liquid).

Renders the schema.org JSON-LD for Brand and Organization. Must be used on all templates.

Copy code from [this file](./seo/schema-organization.liquid).
Copy code from [this file](./schemas/schema-organization.liquid).

```liquid
{% render 'schema-organization' %}
Expand All @@ -134,7 +136,7 @@ Copy code from [this file](./seo/schema-organization.liquid).

Renders the schema.org JSON-LD for Blog post and article. Must be used on article cards or templates.

Copy code from [this file](./seo/schema-article.liquid).
Copy code from [this file](./schemas/schema-article.liquid).

```liquid
{% render 'schema-article' article: block.settings.article %}
Expand Down Expand Up @@ -267,7 +269,7 @@ Pure liquid dynamic Shop pay button for express checkout.
Copy code from [this file](./ui/shop-pay-button.liquid).

```liquid
{% render 'shop-pay-button' variant: product.selected_or_first_available_variant %}
{% render 'shop-pay-button' variant: variant: product.selected_or_first_available_variant %}
```

This snippet is based on the [Shopify web component](https://shopify.dev/docs/custom-storefronts/additional-sdks/web-components#buy-with-shop-pay-component).
Expand All @@ -276,6 +278,10 @@ This snippet is based on the [Shopify web component](https://shopify.dev/docs/cu

We'd love your help! Please read our [contributing guide](https://github.com/odestry/.github/blob/main/CONTRIBUTING.md) to learn about our development process, how to propose bug fixes and improvements.

## About

Odestry isn't just a community; it's a group of dedicated folks all aiming to build better commerce together. Our mission is to create a supportive and open space where anyone, regardless of experience, can connect, learn, and grow. Here, you'll get inspired, have real talks, and find plenty of resources and open source tools to help you build. Whether you're looking to network, find opportunities, or just have meaningful conversations, join us and be part of a community that values authenticity, collaboration, and innovation. [Learn more](https://odestry.com).

## License

Copyright (c) 2023-present Odestry. See [LICENSE](/LICENSE.md) for further details.
Copyright (c) 2024-present Odestry. See [LICENSE](/LICENSE.md) for further details.

0 comments on commit 50b516b

Please sign in to comment.