<?php 
if (have_posts()) {
    the_post();
    ?>

<div class="titleContainer font1 titlePage titleBordered">
    <div class="title">
        <?php 
    the_title();
    ?>
    </div>
</div>

<div class="page page-no-padding">
	<div class="pageContents">
		<?php 
    echo Tesla_slider::get_slider_html('revoke_portfolio', '', 'single', get_the_ID());
    ?>
	</div>
    <?php 
    comments_template();
    ?>
</div>

<?php 
}
?>

<?php 
get_footer();
Beispiel #2
0
function biznex_main_slider_section($atts, $content = null)
{
    extract(shortcode_atts(array('section_id' => ''), $atts));
    $output = '';
    $output .= Tesla_slider::get_slider_html('biznex_main', array('shortcode_parameters' => array('section_id' => $section_id)));
    return biznex_before_shortcode() . $output . biznex_after_shortcode();
}
get_header();
?>
<div class="site-title-center">
    <div class="container">
        <h3><?php 
the_title();
?>
</h3>
        <ul class="content-arrows">
            <li class="prev"><i class="icon-517" title="517"></i></li>
            <li class="next"><i class="icon-501" title="501"></i></li>
        </ul>
    </div> 
</div>
<?php 
echo Tesla_slider::get_slider_html('events');
?>

<?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
    <div class='container'>
        <?php 
        the_content();
        ?>
    </div>
    <?php 
    }
}
<?php

get_header();
?>

<?php 
if (have_posts()) {
    the_post();
    ?>

	<?php 
    echo Tesla_slider::get_slider_html('events', '', 'single', get_the_ID());
    ?>
	
<?php 
}
?>

<?php 
get_footer();
get_header();
?>
<div class="site-title-center">
    <div class="container">
        <h3><?php 
the_title();
?>
</h3>
        <ul class="content-arrows">
            <li class="prev"><i class="icon-517" title="517"></i></li>
            <li class="next"><i class="icon-501" title="501"></i></li>
        </ul>
    </div> 
</div>
<?php 
echo Tesla_slider::get_slider_html('events', '', 'masonry');
?>

<?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
    <div class='container'>
        <?php 
        the_content();
        ?>
    </div>
    <?php 
    }
}
<?php

/*
    Template Name: Gallery
*/
get_header();
?>
<div class="content-path-1">
    <h1><?php 
the_title();
?>
</h1>
</div>
<div class="container">
	<?php 
echo Tesla_slider::get_slider_html('gallery');
?>
</div>
<?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
    <div class='container'>
        <?php 
        the_content();
        ?>
    </div>
    <?php 
    }
}
<?php

/*
    Template Name: Portfolio
*/
get_header();
?>
<div class="content-path-1">
    <h1><?php 
the_title();
?>
</h1>
</div>
<div class="container">
	<?php 
echo Tesla_slider::get_slider_html('portfolio');
?>
</div>
<?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
    <div class='container'>
        <?php 
        the_content();
        ?>
    </div>
    <?php 
    }
}