Advertisement
Guest User

Untitled

a guest
Jul 7th, 2012
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang_iso}">
  3. <head>
  4. <title>{$meta_title|escape:'htmlall':'UTF-8'}</title>
  5. {if isset($meta_description) AND $meta_description}
  6. <meta name="description" content="{$meta_description|escape:html:'UTF-8'}" />
  7. {/if}
  8. {if isset($meta_keywords) AND $meta_keywords}
  9. <meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" />
  10. {/if}
  11. <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
  12. <link rel="shortcut icon" type="image/x-icon" href="{$img_ps_dir}favicon.ico?{$img_update_time}" />
  13.  
  14. {if isset($css_files)}
  15. {foreach from=$css_files key=css_uri item=media}
  16. <link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />
  17. {/foreach}
  18. {/if}
  19. {if isset($js_files)}
  20. {foreach from=$js_files item=js_uri}
  21. <script type="text/javascript" src="{$js_uri}"></script>
  22. {/foreach}
  23. {/if}
  24.  
  25. {$HOOK_HEADER}
  26. </head>
  27.  
  28. <body {if $page_name}id="{$page_name|escape:'htmlall':'UTF-8'}"{/if}>
  29.  
  30. </script>
  31.  
  32. {if !$content_only}
  33. {if isset($restricted_country_mode) && $restricted_country_mode}
  34. <div id="restricted-country">
  35. <p>{l s='You cannot place a new order from your country.'} <span class="bold">{$geolocation_country}</span></p>
  36. </div>
  37. {/if}
  38.  
  39. <div id="bg">
  40. <div id="page">
  41.  
  42. <!-- Header -->
  43. <div id="header">
  44. <!--[if IE]>
  45. <div id="bodyIE"></div>
  46. <![endif]-->
  47. <a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">
  48.  
  49. <img class="logo" src="{$img_dir}logo.png" alt="{$shop_name|escape:'htmlall':'UTF-8'}" />
  50. </a>
  51. <div id="header_right">
  52. {$HOOK_TOP}
  53. </div>
  54. </div>
  55. <div id="cont_top"></div>
  56.  
  57. <div id="cont_bg">
  58.  
  59.  
  60. <div id="columns">
  61. <!-- Left -->
  62. <div id="left_column" class="column">
  63. {$HOOK_LEFT_COLUMN}
  64. {if $page_name == 'index'}<div id="slider"> {$HOOK_slider} </div>{/if}
  65. </div>
  66.  
  67. <!-- Center -->
  68. {if $page_name != 'index'}<div id="center_column">
  69. <div id="center_top"></div>
  70. <div id="center_bg">
  71. {/if}
  72. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement