Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.03 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  3. <head profile="http://gmpg.org/xfn/11">
  4. <title>
  5. <?php bloginfo('name'); ?>
  6. <?php wp_title(); ?>
  7. </title>
  8. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  9. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
  10. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  11. <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/styles/main.css" type="text/css" />
  12. <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/styles/text.css" type="text/css" />
  13. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
  14. <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
  15. <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
  16. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  17. <?php wp_get_archives('type=monthly&format=link'); ?>
  18. </head>
  19. <body>
  20. <div id="topbar">
  21.     <div id="topbarwrapper">
  22.         <div id="login"></div>
  23.         <div id="date"> </div>
  24.     </div>
  25. </div>
  26. <div id="logobar">
  27.     <div id="logo"><img src="<?php bloginfo('template_url'); ?>/images/logo.png" width="140" height="36" alt="TOPDATA LOGO" /></div>
  28.     <div id="tlf"><img src="<?php bloginfo('template_url'); ?>/images/tlf.png" width="140" height="42" alt="TOPDATA CONTACT" /></div>
  29. </div>
  30. <div id="sitewrapper">
  31.     <div id="navwrapper">
  32.         <div id="nav"></div>
  33.         <div id="search"></div>
  34.     </div>
  35.     <div id="contentwrapper">
  36.         <div id="leftbar"><?php /* Widgetized sidebar */
  37.              if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('leftbar') ) : ?>
  38.              <?php endif; ?></div>
  39.              
  40.              
  41.              
  42.              
  43.         <div id="content">
  44.             <div id="padding">
  45.        
  46.        
  47.             <?php if(have_posts()) : ?>
  48.     <?php while(have_posts()) : the_post(); ?>
  49.    
  50.    
  51.         <div class="productwrapper">
  52.        
  53.             <div class="producttitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
  54.            
  55.             <div class="productcontent">
  56.            
  57.             <div class="productimg"><?php the_post_thumbnail();?></div>
  58.             <div class="productdes"><?php the_excerpt(); ?></div>
  59.             <div class="productorder"></div>
  60.            
  61.             <div style="clear:both;"></div>
  62.            
  63.             </div>
  64.        
  65.         </div>
  66.    
  67.        
  68.      
  69.      
  70.  
  71.     <?php endwhile; ?>
  72.  
  73.     <?php endif; ?>
  74.        
  75.             </div>
  76.        
  77.        
  78.        
  79.         </div>
  80.  
  81.        
  82.         <div id="rightbar"><?php /* Widgetized sidebar */
  83.              if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('rightbar') ) : ?>
  84.              <?php endif; ?></div>
  85.     </div>
  86.     <div style="clear:both;"></div>
  87. </div>
  88. <div id="footer">Topdata.dk . E: info@topdata.dk <span>Topdata, søborg hovedgade 64, 2860 Søborg . T: 65 97 60 90</span> Website developed by <a href="http://www.design4me.dk">design4me.dk</a></div>
  89. </body>
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement