<div class="btn-group">
    <a href="http://testlenke.no" class="btn-cta">Primary</a>
    <a href="http://testlenke.no" class="btn">Secondary 1</a>
    <a href="http://testlenke.no" class="btn">Secondary 2</a>
</div>
<div class="btn-group">
{% for button in buttons  %}
  {% if button.type == 'cta' %}
    {% include '@button--cta' with {
      copy: button.copy
    } %}
  {% else %}
    {% include '@button' with {
      copy: button.copy
    } %}
  {% endif %}
{% endfor %}
</div>
{
  "buttons": [
    {
      "type": "cta",
      "copy": "Primary"
    },
    {
      "copy": "Secondary 1"
    },
    {
      "copy": "Secondary 2"
    }
  ]
}

There are no notes for this item.