Sort

No notes defined.

<div class="c-sort">
  <label for="sort-select">Sort by:</label>
  <select id="sort-select" name="sort-by" {{#if sort.form }}form="{{ sort.form }}"{{/if}}>
    <option>Featured</option>
    <option>Most Recent</option>
    <option>Title</option>
  </select>
</div>
{
  "sort": {
    "form": "form-id"
  }
}
<div class="c-sort">
    <label for="sort-select">Sort by:</label>
    <select id="sort-select" name="sort-by" form="form-id">
        <option>Featured</option>
        <option>Most Recent</option>
        <option>Title</option>
    </select>
</div>