diff --git a/templates/default/view_all.html b/templates/default/view_all.html
new file mode 100644
index 000000000..cd3650151
--- /dev/null
+++ b/templates/default/view_all.html
@@ -0,0 +1,58 @@
+{extends file="layout.tpl"}
+
+
+{block name="body-class"}page-view-all{/block}
+
+{* Breadcrumb *}
+{block name='no-return-functions' append}
+ {$breadcrumbs = [
+ ['title' => {intl l="View all"}, 'url'=>{url path="/view_all"}]
+ ]}
+{/block}
+
+{block name="main-content"}
+
+
+ {$limit={$smarty.get.limit|default:8}}
+ {$product_page={$smarty.get.page|default:1}}
+ {$product_order={$smarty.get.order|default:'alpha'}}
+
+
+
+ {if $smarty.get.type == "new"}
+ {intl l="View all"} {$smarty.get.type} {intl l="products"}
+ {else}
+ {intl l="View all"} {intl l="offers"}
+ {/if}
+ {include file="includes/toolbar.html" toolbar="top" limit=$limit order=$product_order}
+
+
+ {ifloop rel="product_list"}
+
+ {if $smarty.get.type == "new"}
+ {loop type="product" name="product_list" limit=$limit page=$product_page order=$product_order}
+ {include file="includes/single-product.html" product_id=$ID hasBtn=true hasDescription=true width="700" height="320"}
+ {/loop}
+ {else}
+ {loop type="product" name="product_list" promo="yes" limit=$limit page=$product_page order=$product_order}
+ {include file="includes/single-product.html" product_id=$ID hasBtn=true hasDescription=true width="700" height="320"}
+ {/loop}
+ {/if}
+
+
+
+ {/ifloop}
+ {elseloop rel="product_list"}
+
{intl l="No results found"}
+ {/elseloop}
+
+
+ {ifloop rel="product_list"}
+ {include file="includes/toolbar.html" toolbar="bottom"}
+ {/ifloop}
+
+
+
+{/block}
+
+{block name="after-javascript-include"}{/block}
\ No newline at end of file