Sha256: bc1ce5304e64913bb85e3d6fbae8b0add983872aa95ba37b81a465006c0f5295

Contents?: true

Size: 973 Bytes

Versions: 4

Compression:

Stored size: 973 Bytes

Contents

---
{
  "name": "header",
  "category": "header",
  "class": "section-header",
  "settings":
  [
    {
      "id": "brand",
      "type": "text",
      "label": "Text to display in the header",
      "default": "Header"
    }
  ],
  "default":
  {
    "settings":
    {
      "brand": "MY COMPANY"
    },
    "blocks":
    [
      {
        "type": "link",
        "settings":
        {
          "label": "Link #1",
          "url": "https://www.nocoffee.fr",
          "new_tab": "true"
        }
      },
      {
        "type": "link",
        "settings":
        {
          "label": "Link #2",
          "url": "https://www.nocoffee.fr",
          "new_tab": "true"
        }
      }
    ]
  }
}
---
<h1> {{ section.settings.brand }} </h1>
<ul>
  {% for block in section.blocks %}
    <li>
      <a href="{{ block.settings.url }}" target="{% if block.settings.new_tab %}_blank{% endif %}">
        {{ block.settings.label }}
      </a>
    </li>
  {% endfor %}
</ul>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
locomotivecms_steam-1.5.0.rc0 spec/fixtures/default/app/views/sections/header.liquid
locomotivecms_steam-1.5.0.beta3 spec/fixtures/default/app/views/sections/header.liquid
locomotivecms_steam-1.5.0.beta2 spec/fixtures/default/app/views/sections/header.liquid
locomotivecms_steam-1.5.0.beta1 spec/fixtures/default/app/views/sections/header.liquid