This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-horizontal"> | |
<label for="sortBy">Sort by</label> | |
<select name="sortBy" id="sortBy"> | |
<option value="manual">Featured</option> | |
<option value="best-selling">Best Selling</option> | |
<option value="title-ascending">Alphabetically, A-Z</option> | |
<option value="title-descending">Alphabetically, Z-A</option> | |
<option value="price-ascending">Price, low to high</option> | |
<option value="price-descending">Price, high to low</option> | |
<option value="created-descending">Date, new to old</option> |
NewerOlder