From 5b2fe1a9bb3b8c76a4b600a6e0b60bcf91a7d4db Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 1 Nov 2016 15:53:12 -0400 Subject: [PATCH] There was an extra end div at bottom I put starting div to match it. --- views/front/search/index.html | 56 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/views/front/search/index.html b/views/front/search/index.html index bcd70cb..50ad4a8 100644 --- a/views/front/search/index.html +++ b/views/front/search/index.html @@ -1,98 +1,98 @@ {include file='front/search/header.html'} - +
Search for: Match all words
- + {if $haveSearchRequest} - + {if $haveSearchResult} - + - +
Showing {$searchResult.firstResultOnPage} through {$searchResult.lastResultOnPage} of {$searchResult.totalResults} results. -
- +
+ - +
- {if $searchResult.previousPageStartIndex !== false} + {if $searchResult.previousPageStartIndex !== false} Previous Results {else} Previous Results {/if} - {if $searchResult.nextPageStartIndex !== false} - Next Results + Next Results {else} Next Results {/if}
- +
- + - +
{foreach $searchResult.documents as $doc}
- + - +
{foreach from=$doc.content.snippets item="snip" name="snip"} {$snip} - {if (!$smarty.foreach.snip.last)}
----
{/if} + {if (!$smarty.foreach.snip.last)}
----
{/if} {/foreach}
{$doc.url.value}
-
+
{/foreach} - + - +
Showing {$searchResult.firstResultOnPage} through {$searchResult.lastResultOnPage} of {$searchResult.totalResults} results. -
- +
+ - +
- {if $searchResult.previousPageStartIndex !== false} + {if $searchResult.previousPageStartIndex !== false} Previous Results {else} Previous Results {/if} - {if $searchResult.nextPageStartIndex !== false} - Next Results + Next Results {else} Next Results {/if}
- + - - + + {else}

No results matching your search.

{/if} - + {else} (Please enter your desired search above.) {/if} -- 2.17.1