Style Guide

Let's do this


Styles (h2)

This is some dummy copy. You’re not really supposed to read this dummy copy, it is just a place holder for people who need some type to visualize what the actual copy might look like if it were real content.

If you want to read, I might suggest a good book, perhaps Hemingway or Melville. That’s why they call it, the dummy copy. This, of course, is not the real copy for this entry. Rest assured, the words will expand the concept. With clarity. Conviction. And a little wit.

In today’s competitive market environment, the body copy of your entry must lead the reader through a series of disarmingly simple thoughts.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Callout

When you create products in test mode, they will not automatically be available in live mode when your store is activated. However, it’s easy to copy test mode products and discounts to live mode using the “Copy to Live Mode” item in the product or discount menu.

Callout with title

This is a callout title

When you create products in test mode, they will not automatically be available in live mode when your store is activated. However, it’s easy to copy test mode products and discounts to live mode using the “Copy to Live Mode” item in the product or discount menu.


YouTube embed

Syntax

{% youtube id="p1qxrG2pHNE" /%}

Image Block

Syntax

{% image file="help-1.jpeg" width=960 height=540 /%}

Images should be uploaded to public/images directory and width and height attributes must be set. In case of retina images, make sure the dimensions are set to half the size of the actual image.

Lists

  • This is a list item
  • This is a list item
  • This is a list item
  • This is a list item
  1. This is a numbered list item
  2. This is a numbered list item
  3. This is a numbered list item
  4. This is a numbered list item

Table

ParameterDescriptionExample Value
checkout[email]Customer's email[email protected]
checkout[name]Customer's full nameLuke Skywalker
checkout[billing_address][country]Billing address countryUS
checkout[billing_address][state]Billing address stateNY
checkout[billing_address][zip]Billing address ZIP/postal code10038
checkout[tax_number]Business tax numberGB123456789
checkout[discount_code]Discount code10PERCENTOFF

Code Block

{ "meta": { "page": { "currentPage": 1, "from": 1, "lastPage": 1, "perPage": 10, "to": 10, "total": 10 } }, "jsonapi": { "version": "1.0" }, "links": { "first": "https://api.lemonsqueezy.com/v1/order-items?page%5Bnumber%5D=1&page%5Bsize%5D=10&sort=id", "last": "https://api.lemonsqueezy.com/v1/order-items?page%5Bnumber%5D=1&page%5Bsize%5D=10&sort=id", }, "data": [ { "type": "order-items", "id": "1", "attributes": { "order_id": 1, "product_id": 1, "variant_id": 1, "product_name": "Example Product", "variant_name": "Example Variant", "price": 999, "created_at": "2021-05-24T14:15:06.000000Z", "updated_at": "2021-05-24T14:15:06.000000Z" }, "relationships": { "order": { "links": { "related": "https://api.lemonsqueezy.com/v1/order-items/1/order", "self": "https://api.lemonsqueezy.com/v1/order-items/1/relationships/order" } }, "product": { "links": { "related": "https://api.lemonsqueezy.com/v1/order-items/1/product", "self": "https://api.lemonsqueezy.com/v1/order-items/1/relationships/product" } }, "variant": { "links": { "related": "https://api.lemonsqueezy.com/v1/order-items/1/variant", "self": "https://api.lemonsqueezy.com/v1/order-items/1/relationships/variant" } } }, "links": { "self": "https://api.lemonsqueezy.com/v1/order-items/1" } }, {...}, {...}, ] }