Components

Bootstrap Carousel

Frontend? Admin? What if you don't need anymore to learn and work with two different templates on your projects?
Smarty Team

<div class="card overflow-hidden shadow-xs b-0">
	<div class="row no-gutters">

		<div class="col-12 col-lg-6">

			<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="4000">

				<ol class="carousel-indicators">
					<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
					<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
				</ol>

				<div class="carousel-inner">

					<div class="carousel-item active">
						<img src="../demo.files/images/unsplash/studio-republic-fotKKqWNMQ4-unsplash.jpg" class="d-block w-100" alt="...">
					</div>

					<div class="carousel-item">
						<img src="../demo.files/images/unsplash/studio-republic-qeij_dhDhGg-unsplash.jpg" class="d-block w-100" alt="...">
					</div>

				</div>

				<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
					<span class="carousel-control-prev-icon" aria-hidden="true"></span>
					<span class="sr-only">Previous</span>
				</a>

				<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
					<span class="carousel-control-next-icon" aria-hidden="true"></span>
					<span class="sr-only">Next</span>
				</a>

			</div>
								
		</div>

		<!-- card body -->
		<div class="col-12 col-lg-6 p--30">

			<div class="card-body d-table h-100">

				<div class="d-table-cell align-middle">

					<blockquote class="blockquote mb-0 text-center mx-auto max-w-400 font-weight-light">
						Frontend? Admin? What if you don't need anymore to learn and work with two different templates on your projects?

						<footer class="blockquote-footer">
							Smarty Team
						</footer>

					</blockquote>

				</div>

			</div>

		</div>

	</div>
</div>