mirror of
https://github.com/moparisthebest/Fresh-Food-Finder
synced 2024-11-24 09:42:17 -05:00
24 lines
653 B
HTML
24 lines
653 B
HTML
|
<div id="searchResultsView" class="data-list" >
|
||
|
<div class="padded heading">
|
||
|
<a id="mapButton" class="button right">MAP VIEW</a>
|
||
|
Results for criteria: <br/>{{criteria}}
|
||
|
</div>
|
||
|
|
||
|
{{#overLength}}
|
||
|
<div class="padded warning">Please refine your search results, only the first 50 results are displayed.</div>
|
||
|
{{/overLength}}
|
||
|
|
||
|
<ul>
|
||
|
{{#markets}}
|
||
|
<li index="{{index}}">
|
||
|
<strong>{{marketName}}</strong><br/>
|
||
|
{{#street}}
|
||
|
{{street}}<br/>
|
||
|
{{/street}}
|
||
|
{{city}}, {{state}}, {{zip}}
|
||
|
</li>
|
||
|
{{/markets}}
|
||
|
</ul>
|
||
|
|
||
|
|
||
|
</div>
|