Advertisement
Guest User

Untitled

a guest
Jan 11th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <!-- Design by Elthemes (http://www.elthemes.com) - Proudly powered by WordPress (http://wordpress.org) -->
  4. <head>
  5.  
  6. <!-- Basic Page
  7. ================================================== -->
  8. <title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name'); ?></title>
  9. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  10.  
  11. <!-- Mobile Specific Metas
  12. ================================================== -->
  13. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  14.  
  15. <!-- CSS
  16. ================================================== -->
  17. <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>"/>
  18. <link rel="stylesheet" type="text/css" media="screen" href="<?php echo get_template_directory_uri(); ?>/css/base.css"/>
  19.  
  20. <!-- Custom Style
  21. ================================================== -->
  22. <?php include (VPT_FILEPATH . "/css/dynamic-style.php"); ?>
  23.  
  24. <!-- RSS & Pingbacks
  25. ================================================== -->
  26. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php if (get_option('vpt_feedburner')) {
  27. echo get_option('vpt_feedburner');
  28. } else {
  29. bloginfo('rss2_url');
  30. } ?>" />
  31. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  32.  
  33. <!-- Media Query
  34. ================================================== -->
  35.  
  36. <!--[if lt IE 9]>
  37. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  38. <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
  39. <![endif]-->
  40.  
  41.  
  42. <!-- WP Head // functions
  43. ================================================== -->
  44. <?php
  45. /* Always have wp_head() just before the closing </head>
  46. * tag of your theme, or you will break many plugins, which
  47. * generally use this hook to add elements to <head> such
  48. * as styles, scripts, and meta tags.
  49. */
  50. wp_head();
  51. ?>
  52.  
  53. </head>
  54.  
  55. <body <?php body_class(); ?>>
  56.  
  57.  
  58. <!-- HEADER
  59. ================================================== -->
  60.  
  61.  
  62. <!-- BEGIN header -->
  63. <div id="header">
  64.  
  65. <!-- BEGIN container -->
  66. <div class="container clearfix">
  67.  
  68. <!-- LOGO -->
  69. <?php
  70. $vpt_logo = get_option('vpt_logo');
  71. if (!empty($vpt_logo)) {
  72. $logo = $vpt_logo;
  73. } else {
  74. $logo = get_template_directory_uri() . "/images/logo.png";
  75. }
  76. ?>
  77. <div id="logo"><a href="<?php echo home_url(); ?>"><img src="<?php echo $logo; ?>" alt="">&nbsp;</a></div>
  78.  
  79.  
  80. <!-- BEGIN #navigation -->
  81. <div id="navigation">
  82.  
  83. <div class="s_menu">
  84. <?php
  85. wp_nav_menu(array(
  86. 'theme_location' => 'primary-menu',
  87. 'container' => '',
  88. 'before' => ' ',
  89. 'fallback_cb' => ''
  90. ));
  91. ?>
  92. </div>
  93.  
  94. </div>
  95. <!-- END #navigation -->
  96.  
  97. </div>
  98. <!-- END container -->
  99.  
  100. </div>
  101. <!-- END header -->
  102.  
  103. <!-- BEGIN container -->
  104. <div id="dropdown_menu">
  105.  
  106. <div class="container clearfix">
  107.  
  108. </div>
  109.  
  110. </div>
  111.  
  112.  
  113.  
  114.  
  115.  
  116. <!-- CONTENT
  117. ================================================== -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement