Skip to content

Commit

Permalink
Add custom search
Browse files Browse the repository at this point in the history
  • Loading branch information
voltan committed Jan 8, 2017
1 parent 17a4ea5 commit 373643b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions template/front/search-result.phtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<div class="search-result-item col-md-3">
<div class="thumbnail">
<a title="<?php echo $item['title']; ?>" href="<?php echo $item['url']; ?>">
<img class="img-responsive" src="<?php echo _escape($item['image']); ?>"
alt="<?php echo _escape($item['title']); ?>">
</a>
<div class="caption">
<h3>
<a title="<?php echo $item['title']; ?>" href="<?php echo $item['url']; ?>">
<?php echo _escape($item['title']); ?>
</a>
</h3>
</div>
</div>
</div>

0 comments on commit 373643b

Please sign in to comment.