-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarousel-loop.php
More file actions
50 lines (50 loc) · 3.18 KB
/
carousel-loop.php
File metadata and controls
50 lines (50 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<div class="row">
<div class="col-md-12">
<div id="tfc-caraousel" style="display:none">
<h2 class="text-center"><?php _e( 'Featured Listing' , 'shopclass' ); ?></h2>
<p class="text-center"><?php _e( 'Carefully handpicked listings for you.' , 'shopclass' ); ?></p>
<div id="nav-crsl" class="crsl-nav fa-2x">
<a class="next left" href="#"><i class="fa fa-chevron-circle-left"></i></a>
<a class="previous right" href="#"><i class="fa fa-chevron-circle-right"></i></a>
</div>
<div class="col-md-12">
<div class="crsl-items" data-navigation="nav-crsl">
<div class="crsl-wrap">
<?php
while ( osc_has_items() ) {
?>
<figure class="crsl-item">
<div class="flag-topright flag-carousel"><i class="flag-pin fa fa-flash"></i></div>
<?php if ( osc_images_enabled_at_items() ) { ?>
<?php if ( osc_count_item_resources() ) { ?>
<a href="<?php echo osc_item_url(); ?>">
<img class="img-responsive "
src="<?php echo osc_resource_thumbnail_url(); ?>"
alt="<?php echo osc_esc_html( osc_item_title() ); ?>"/>
</a>
<?php } else { ?>
<a href="<?php echo osc_item_url(); ?>">
<img class="img-responsive"
src="<?php echo tfc_category_image_thumbnail_url( tfc_item_parent_category_id() ); ?>"
alt="No image available"/>
</a>
<?php }
} ?>
<figcaption class="text-center">
<h3 class="panel-title text-ellipsis"><a class="text-capitalize"
href="<?php echo osc_item_url(); ?>"><?php echo osc_highlight( osc_item_title() , 45 ); ?></a>
</h3>
<ul class="list-group list-unstyled">
<li><?php echo tfc_time_ago( osc_item_pub_date() ); ?></li>
<li class="h5 text-info"><?php if ( osc_price_enabled_at_items() ) { ?><?php _e( "Price" , 'shopclass' ); ?>: <?php echo osc_item_formated_price(); ?><?php } ?></li>
</ul>
</figcaption>
</figure>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>