Created
December 18, 2015 20:23
-
-
Save barisesen/e28721290a26d596f53c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Carousel--> | |
<div id="sidebar-carousel-1" class="carousel slide" data-ride="carousel"> | |
<ol class="carousel-indicators grey"> | |
<li data-target="#sidebar-carousel-1" data-slide-to="0" class="active"></li> | |
<li data-target="#sidebar-carousel-1" data-slide-to="1"></li> | |
<li data-target="#sidebar-carousel-1" data-slide-to="2"></li> | |
</ol> | |
<div class="carousel-inner"> | |
<div class="item active"> | |
<a href="" data-lightbox="image-1" title=""> | |
<img src="1.jpg" alt="..." style="height:250px;"> | |
</a> | |
</div> | |
<div class="item"> | |
<a href="" data-lightbox="image-1" title=""> | |
<img src="1.jpg" alt="..." style="height:250px;"> | |
</a> </div> | |
<div class="item"> | |
<a href="" data-lightbox="image-1" title=""> | |
<img src="1.jpg" alt="..." style="height:250px;"> | |
</a> </div> | |
</div> | |
<!-- Controls --> | |
<a class="left carousel-control" href="#sidebar-carousel-1" data-slide="prev"> | |
<span class="glyphicon glyphicon-chevron-left"></span> | |
</a> | |
<a class="right carousel-control" href="#sidebar-carousel-1" data-slide="next"> | |
<span class="glyphicon glyphicon-chevron-right"></span> | |
</a> | |
</div><!--/Carousel--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment