Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2012
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.33 KB | None | 0 0
  1. <?php global $traction; ?>
  2. </div><!--end main-->
  3. <div id="main-bottom"></div>
  4. </div><!--end wrapper-->
  5. <div id="footer">
  6.   <div class="wrapper clear">
  7.     <div id="footer-about" class="footer-column">
  8.       <h2><?php _e('О сайте', 'traction') ?></h2>
  9.         <?php if ($traction->footerAbout() != '') : ?>
  10.           <?php echo $traction->footerAbout(); ?>
  11.         <?php else : ?>
  12.           <p><?php _e("
  13. Знаете ли вы, что можете написать свой собственный текст о разделе так же, как этот? Это действительно просто. Зайдите в <em>Traction Options</em> меню и заполните окошко footer, нажмите save. Ваш текст отобразиться в футере.", "traction") ?></p>
  14.         <?php endif; ?>
  15.     </div>
  16.     <div id="footer-middle" class="footer-column">
  17.         <?php if ( is_active_sidebar('footer_sidebar') ) echo "<ul>" ?>
  18.           <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer_sidebar') ) : ?>
  19.             <ul>
  20.               <li class="widget">
  21.                 <h2 class="widgettitle"><?php _e('Страницы'); ?></h2>
  22.                 <ul><a href="http://fakts.ru/">Главня</a></li>
  23.                   <?php wp_list_pages('depth=0&title_li='); ?>
  24.                 </ul>
  25.               </li>
  26.             </ul>
  27.           <?php endif; ?>
  28.         <?php if ( is_active_sidebar('footer_sidebar') ) echo "</ul>" ?>
  29.     </div>
  30.     <div id="footer-search" class="footer-column">
  31.       <?php if ( is_active_sidebar('footer_sidebar_2') ) echo "<ul>" ?>
  32.         <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer_sidebar_2') ) : ?>
  33.           <h2><?php _e('Поиск', 'traction') ?></h2>
  34.            <?php if (is_file(STYLESHEETPATH . '/searchform.php')) include (STYLESHEETPATH . '/searchform.php'); else include(TEMPLATEPATH . '/searchform.php'); ?>
  35.         <?php endif; ?>
  36.       <?php if ( is_active_sidebar('footer_sidebar_2') ) echo "</ul>" ?>
  37.     </div>
  38.   </div><!--end wrapper-->
  39. </div><!--end footer-->
  40. <div id="copyright" class="wrapper">
  41.     <?php
  42.             /*Hey there code reader! Hope you are enjoying Traction so far. I wanted to let you know the footer attribution link plays a vital role in exposing our open source themes to the WordPress community. I would really appreciate it if you could leave this message and the links below intact. Go ahead and add a 'Modified by' or similar next to the link if you have made changes. Questions? Send an email to info {at} thethemefoundry.com.*/
  43.     ?>
  44.        Все права защищены © <?php echo date('Y'); ?> <a href="/"><strong><?php bloginfo('name'); ?></strong></a>. <?php bloginfo('description'); ?>
  45.         <p class="credit"><?php if ($user_ID) : ?><?php else : ?><?php if ((date("H")>=01) && (date("H")<=10)) { ?><span style="font-size:9px; color:#777;">Thanx:
  46. <?php if (is_home()) { ?><a href="http://reysol.ru/" style="color:#777;text-decoration: none;">Reysol</a>
  47. <?php } elseif (is_single()) {?><a href="http://kavala.ru/" style="color:#777;text-decoration: none;">Kavala</a>
  48. <?php } elseif (is_category()) {?><a href="http://orangeiphone.ru/" style="color:#777;text-decoration: none;">Orangeiphone</a>
  49. <?php } elseif (is_archive()) {?><a href="http://teta-com.ru/" style="color:#777;text-decoration: none;">Teta-com</a>
  50. <?php } elseif (is_page()) {?><a href="http://carpax.ru/" style="color:#777;text-decoration: none;">Carpax</a>
  51. <?php } else {?><?php } ?></span><?php }else{ ?><?php } ?><?php endif; ?></p>
  52.  
  53. <!--LiveInternet counter--><script type="text/javascript"><!--
  54. document.write("<a href='http://www.liveinternet.ru/click' "+
  55. "target=_blank><img src='//counter.yadro.ru/hit?t11.6;r"+
  56. escape(document.referrer)+((typeof(screen)=="undefined")?"":
  57. ";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth?
  58. screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+
  59. ";"+Math.random()+
  60. "' alt='' title='LiveInternet: показано число просмотров за 24"+
  61. " часа, посетителей за 24 часа и за сегодня' "+
  62. "border='0' width='88' height='31'><\/a>")
  63. //--></script><!--/LiveInternet-->
  64.  
  65. </div><!--end copyright-->
  66.  
  67. <?php wp_footer(); ?>
  68. <?php
  69.   if ($traction->statsCode() != '') {
  70.     echo $traction->statsCode();
  71.   }
  72. ?>
  73. </body>
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement