sharpetronics.com/api/products.json

16 lines
367 B
JSON
Raw Normal View History

2022-04-25 20:51:35 -04:00
---
layout: none
permalink: /api/products/
---
[
{%- for product_hash in site.data.products %}
{% assign product = product_hash[1] %}
{
"title": {{- product.title | jsonify }},
"url": {{- product.url | jsonify }},
"price": {{- product.price | jsonify }}
}
{% unless forloop.last %},{% endunless %}
{% endfor -%}
]