|
Table: Storefront Pages with Store Blocks
There is an example of storefront page product-list.php with integrated store blocks.
<?php include('init.php'); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"
<HTML>
<HEAD>
<TITLE>Avactis Sample Store</TITLE>
</HEAD>
<BODY>
<CENTER>
<TABLE>
<TR>
<!-- Top image -->
<TD><IMG SRC="images/main_banner_small.gif"></TD>
</TR>
<TR>
<TD>
<!-- Main Menu -->
<TABLE width="180px" cellpadding="0" cellspacing="0">
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
<TR><TD><A HREF="index.php">Home Page</A></TD></TR>
</TABLE>
<?php NavigationBar(); ?>
<!-- Special Offers Image -->
<A HREF=""><IMG SRC="images/special.gif"></A>
</TD>
<TD>
<!-- Display Items Qty in the Cart -->
<A HREF="cart.php" >Your Shopping Cart: 0 items</A>
<TABLE width="100%" cellpadding="0" cellspacing="0">
<TR>
<TD>
<?php Breadcrumb(); ?>
</TD>
</TR>
<TR>
<TD>
<?php ProductList(); ?>
</TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD>
Copyright 2006 Avactis Sample Store.<BR>
All rights reserved.Powered by Avactis
<A HREF="http://www.avactis.com">Shopping Cart</A>
</TD>
</TR>
</TABLE>
</CENTER>
</BODY>
</HTML>
Back
|