📜  Shopify 块 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:07.353000             🧑  作者: Mango

代码示例1
{% for block in section.blocks %}
  {{ block.settings.setting }}
{% endfor %}

{% schema %}
  {
    "name": "Section name",
    "blocks": [
      {
        "name": "name",
        "type": "type",
        "settings": [
          {
            "type": "type",
            "id": "id",
            "label": "label"
          }
        ]
      }
    ]
  }
{% endschema %}