View Single Post
  #3  
Old 07-04-2004, 11:34 PM
 
ScrappinShop ScrappinShop is offline
 

Member
  
Join Date: Mar 2004
Posts: 14
 

Default

Here you go, thanks for looking!

Code:
{* $Id: home.tpl,v 1.54 2003/11/17 08:43:32 svowl Exp $ *} { config_load file="$skin_config" } <html> <head> <title>My Store Name {if $main eq "catalog"} {if $location eq ""} - Home {else} {strip} {section name=position loop=$location start=0 } {if %position.last% eq "true"} - {$location[position].0|escape}{/if} {/section} {/strip} {/if} {elseif $main eq "product"} {if $product.product ne ''} - {$product.product}{/if} {elseif $main eq "help"} - Help section {elseif $main eq "cart"} - Your Shopping Cart {elseif $main eq "checkout"} - Checkout {elseif $main eq "order_message"} - Thank you for your order {elseif $main eq "wishlist"} - Wishlist {elseif $main eq "giftcert"} - Gift certificates {/if} </title> { include file="meta.tpl" } <link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}"> </head> <body LEFTMARGIN=0 TOPMARGIN=0 RIGHTMARGIN=0 BOTTOMMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0> { include file="rectangle_top.tpl" } { include file="head.tpl" } <table border=0 width="100%" cellpadding=0 cellspacing=0 align="center"> <tr> <td width=6></td> <td width=150 valign=top> { include file="customer/categories.tpl" } {if $active_modules.Bestsellers ne "" and $config.Modules.bestsellers_menu eq "Y"} { include file="modules/Bestsellers/menu_bestsellers.tpl" } {/if} {include file="customer/special.tpl"} { include file="help.tpl" } </td> <td width=20></td> <td valign=top> {include file="customer/home_main.tpl"} </td> <td width=20></td> <td width=150 valign=top> { include file="customer/menu_cart.tpl" } {if $login eq "" } { include file="auth.tpl" } {else} { include file="authbox.tpl" } {/if} { include file="news.tpl" } {if $active_modules.Interneka ne ""} { include file="modules/Interneka/menu_interneka.tpl" } {/if} { include file="poweredby.tpl" } </td> <td width=6></td> </tr> </table> { include file="rectangle_bottom.tpl" } </body> </html>
Reply With Quote