Title: Web Site Design Post by: Chief! on February 10, 2012, 11:55:40 AM Designing a web site for CubeCart 5 involves creating a series of HTML files that comprise:
The global structure holds the various parts and pieces in place and has the requisite <html>, <head>, and <body> blocks. Each of the content details is usually placed in the center or the right side under the banner and the left side column is typically used for navigation and other details common to every page. But there may also be a right side column to hold some of the common details. The Content and Common detail blocks are represented in the global structure as {$PLACEHOLDERS}. Each of these placeholders will be replaced by actual HTML code built from their respective purpose. There is no need, however, to make sure each placeholder gets replaced. The engine that builds the final HTML code will strip any placeholder it finds whether there is any content for it or not.
logo for skins with subsets: <a href="{$STORE_URL}/index.php"><img src="{$STORE_URL}/images/logos/{$SKIN_FOLDER}-{$SKIN_SUBSET}.php" alt="{$META_TITLE}" /></a> logo for skins without subsets: <a href="{$STORE_URL}/index.php"><img src="{$STORE_URL}/images/logos/{$SKIN_FOLDER}.php" alt="{$META_TITLE}" /></a> template files for page content (
content.category.php = index.php?_a=category&cat_id=1 content.certificates.php = index.php?_a=certificates content.contact.php = index.php?_a=contact content.document.php = index.php?_a=document&doc_id=1 content.homepage.php = index.php content.login.php = index.php?_a=login content.product.php = index.php?_a=product&product_id=1 content.recover.php = index.php?_a=recover content.recovery.php = index.php?_a=recovery content.register.php = index.php?_a=register content.search.php = index.php?_a=search checkout pages content.checkout.php = index.php?_a=basket content.checkout.confirm.php = index.php?_a=confirm (step 2 of the checkout; for registered users shows a selection of saved addresses, for unregistered users shows a form to enter an address) content.gateway.php = index.php?_a=gateway customer account pages content.addressbook.php = index.php?_a=addressbook content.downloads.php = index.php?_a=downloads content.newsletter.php = index.php?_a=newsletter content.orders.php = index.php?_a=vieworder content.profile.php = index.php?_a=profile content.receipt.php = index.php?_a=vieworder&cart_order_id=111111-111111-1111 |