Advertisement
gadiman

Untitled

Aug 28th, 2016
1,509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. class qa_html_theme extends qa_html_theme_base
  6. {
  7. function html()
  8. {
  9. $this->output(
  10. '<HTML>',
  11. '<!-- Powered by Question2Answer - http://www.question2answer.org/ -->'
  12. );
  13.  
  14. $this->output(
  15. '<HEAD>',
  16. '<META HTTP-EQUIV="Content-type" CONTENT="'.$this->content['content_type'].'"/>'
  17. );
  18.  
  19. $this->head_title();
  20. $this->head_metas();
  21. $this->head_css();
  22. $this->head_links();
  23. $this->head_lines();
  24. $this->head_script();
  25. $this->head_custom();
  26.  
  27. ?>
  28.  
  29. <!DOCTYPE html>
  30. <!--[if IE 7]>
  31. <html class="ie ie7" <?php language_attributes(); ?>>
  32. <![endif]-->
  33. <!--[if IE 8]>
  34. <html class="ie ie8" <?php language_attributes(); ?>>
  35. <![endif]-->
  36. <!--[if !(IE 7) & !(IE 8)]><!-->
  37. <html <?php language_attributes(); ?>>
  38. <!--<![endif]-->
  39. <head>
  40. <meta charset="<?php bloginfo( 'charset' ); ?>">
  41. <meta name="viewport" content="width=device-width">
  42. <title><?php wp_title( '|', true, 'right' ); ?></title>
  43. <link rel="profile" href="http://gmpg.org/xfn/11">
  44. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  45. <!--[if lt IE 9]>
  46. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
  47. <![endif]-->
  48. <?php wp_head(); ?>
  49. </head>
  50. <body <?php body_class(); ?>>
  51. <div id="page" class="hfeed site">
  52. <header id="masthead" class="site-header" role="banner">
  53. <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
  54. <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
  55. <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  56. </a>
  57.  
  58. <div id="navbar" class="navbar">
  59. <nav id="site-navigation" class="navigation main-navigation" role="navigation">
  60. <button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></button>
  61. <a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
  62. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'menu_id' => 'primary-menu' ) ); ?>
  63. <?php get_search_form(); ?>
  64. </nav><!-- #site-navigation -->
  65. </div><!-- #navbar -->
  66. </header><!-- #masthead -->
  67.  
  68. <div id="main" class="site-main">
  69.  
  70.  
  71. <?php
  72. $this->body();
  73. ?>
  74.  
  75. </div><!-- #main -->
  76. <footer id="colophon" class="site-footer" role="contentinfo">
  77. <?php get_sidebar( 'main' ); ?>
  78.  
  79. <div class="site-info">
  80. <?php do_action( 'twentythirteen_credits' ); ?>
  81. <span style="color: #0000ff; font-family: flix007; font-size: 16pt;">ליצירת קשר, איתן כהן : 053-5324203</span>
  82. </a>
  83. </div><!-- .site-info -->
  84. </footer><!-- #colophon -->
  85. </div><!-- #page -->
  86.  
  87. <?php wp_footer(); ?>
  88. </body>
  89. </html>
  90. <?php
  91.  
  92. $this->output(
  93. '<!-- Powered by Question2Answer - http://www.question2answer.org/ -->',
  94. '</HTML>'
  95. );
  96. }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement