Advertisement
Konark

Untitled

Mar 3rd, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.37 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <section class="main">
  3.         <div class="main_wrap">
  4.             <div class="container">
  5.                 <div class="row">
  6.                     <div class="col-xs-12 content g_cont">
  7.                         <div class="col-sm-6 col-xs-12 left whmc">
  8.                             <div class="col-sm-10 col-sm-offset-1 col-xs-12">
  9.                                 <?php
  10.                                 if ( have_posts() ) {
  11.                                     while ( have_posts() ) {
  12.                                         the_post();
  13.                                         the_content();
  14.                                     } // end while
  15.                                 } // end if
  16.                                 ?>
  17.                                 <table>
  18.                                     <caption><a href="">Бассейн МИСиС (институт)</a>
  19.                                         <span>Ближайшая станция метро «Беляево»</span>
  20.                                     </caption>
  21.                                     <tr class="t_day">
  22.                                         <th>Пн</th>
  23.                                         <th>Вт</th>
  24.                                         <th>Ср</th>
  25.                                     </tr>
  26.                                     <tr class="t_time">
  27.                                         <th><?php the_field('m_pn'); ?></th>
  28.                                         <th><?php the_field('m_vt'); ?></th>
  29.                                         <th><?php the_field('m_sr'); ?></th>
  30.                                     </tr>
  31.                                 </table>
  32.                                 <table>
  33.                                     <caption><a href="">Бассейн РГСУ (университет)</a>
  34.                                         <span>Ближайшая станция метро «Ботанический сад»</span>
  35.                                     </caption>
  36.                                     <tr class="t_day">
  37.                                         <th>Пн</th>
  38.                                         <th>Сб</th>
  39.                                         <th>Вс</th>
  40.                                     </tr>
  41.                                     <tr class="t_time">
  42.                                         <th><?php the_field('r_pn'); ?></th>
  43.                                         <th><?php the_field('r_vt'); ?></th>
  44.                                         <th><?php the_field('r_sr'); ?></th>
  45.                                     </tr>
  46.                                 </table>
  47.                             </div>
  48.                         </div>
  49.                         <div class="col-sm-6 col-xs-12 right whmcr">
  50.                             <div class="img_wrap img-responsive">
  51.                                 <?php
  52.                                 $image = get_field('img');
  53.                                 if( !empty($image) ): ?>
  54.                                         <img src="<?php echo $image['url']; ?>" />
  55.                                 <?php endif; ?>
  56.                             </div>
  57.                         </div>
  58.                         <div class="metro col-xs-12">
  59.                                 <span>Бассейны:</span>
  60.                                 <a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/metro.png" alt="">Беляево</a>
  61.                                 <a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/metro.png" alt="">Ботанический сад</a>
  62.                             </div>
  63.                     </div>
  64.                 </div>
  65.                 <div class="copy col-xs-10 col-xs-offset-1 col-sm-10 col-sm-offset-1">
  66.                     <a href="http://Sozidatel.BIZ" target="_blank">Sozidatel.BIZ</a>
  67.                 </div>
  68. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement