2014-09-30 12:13:06 +03:00
|
|
|
<?php get_header(); ?>
|
2014-10-04 23:54:46 +03:00
|
|
|
<section class="content grid">
|
|
|
|
<div class="col2">
|
|
|
|
<h1><?php echo get_bloginfo('name'); ?> </h1>
|
|
|
|
<p><?php echo get_bloginfo('description'); ?></p>
|
|
|
|
</div>
|
|
|
|
<div class="col2">
|
|
|
|
<h3>Спонсори</h3>
|
2014-10-05 08:42:32 +03:00
|
|
|
<?php echo do_shortcode( '[sponsors]' ); ?>
|
2014-10-04 23:54:46 +03:00
|
|
|
</div>
|
2014-09-30 12:13:06 +03:00
|
|
|
</section>
|
2014-10-04 23:54:46 +03:00
|
|
|
|
|
|
|
<div class="separator"></div>
|
|
|
|
|
|
|
|
<section class="content">
|
2014-10-06 04:38:44 +03:00
|
|
|
<?php echo do_shortcode( '[sh-latest-posts cat="news" label="Новини"]' ); ?>
|
2014-10-04 23:54:46 +03:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<div class="separator"></div>
|
|
|
|
|
2014-10-06 04:38:44 +03:00
|
|
|
<section class="content">
|
2014-10-04 23:54:46 +03:00
|
|
|
<h3>Място: Интерпред, София, България</h3>
|
|
|
|
<?php
|
|
|
|
$transport_args = array( 'post_type' => 'transportation' );
|
|
|
|
$transport = new WP_Query( $transport_args );
|
|
|
|
|
|
|
|
if ( $transport->have_posts() ) :
|
|
|
|
while ( $transport->have_posts() ) : $transport->the_post();
|
|
|
|
?>
|
|
|
|
<p><?php the_title(); ?> <br /> <?php the_content(); ?></p>
|
|
|
|
<?php
|
|
|
|
endwhile;
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
</section>
|
|
|
|
|
2014-10-06 04:38:44 +03:00
|
|
|
|
|
|
|
<?php echo do_shortcode( '[ready_google_map id="1" map_language="en" type="HYBRID" align="right"]' ); ?>
|
|
|
|
|
2014-09-30 12:13:06 +03:00
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|