2018-11-05 12:24:55 +01:00
---
layout: examples
title: Carousel Template
2019-01-08 17:33:28 +01:00
extra_css:
- "carousel.css"
2018-11-05 12:24:55 +01:00
---
< header >
< nav class = "navbar navbar-expand-md navbar-dark fixed-top bg-dark" >
2019-12-25 17:16:15 +01:00
< div class = "container-fluid" >
< a class = "navbar-brand" href = "#" > Carousel< / a >
2020-07-22 21:33:11 +02:00
< button class = "navbar-toggler" type = "button" data-bs-toggle = "collapse" data-bs-target = "#navbarCollapse" aria-controls = "navbarCollapse" aria-expanded = "false" aria-label = "Toggle navigation" >
2019-12-25 17:16:15 +01:00
< span class = "navbar-toggler-icon" > < / span >
< / button >
< div class = "collapse navbar-collapse" id = "navbarCollapse" >
2020-06-09 15:44:20 +02:00
< ul class = "navbar-nav me-auto mb-2 mb-md-0" >
2021-01-05 21:15:59 +01:00
< li class = "nav-item" >
< a class = "nav-link active" aria-current = "page" href = "#" > Home< / a >
2019-12-25 17:16:15 +01:00
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link disabled" href = "#" tabindex = "-1" aria-disabled = "true" > Disabled< / a >
< / li >
< / ul >
2019-09-28 16:16:03 +02:00
< form class = "d-flex" >
2020-06-09 15:44:20 +02:00
< input class = "form-control me-2" type = "search" placeholder = "Search" aria-label = "Search" >
2019-09-28 16:16:03 +02:00
< button class = "btn btn-outline-success" type = "submit" > Search< / button >
2019-12-25 17:16:15 +01:00
< / form >
< / div >
2018-11-05 12:24:55 +01:00
< / div >
< / nav >
< / header >
2020-03-09 14:37:46 +01:00
< main >
2018-11-05 12:24:55 +01:00
2020-07-22 21:33:11 +02:00
< div id = "myCarousel" class = "carousel slide" data-bs-ride = "carousel" >
2018-11-05 12:24:55 +01:00
< ol class = "carousel-indicators" >
2020-07-22 21:33:11 +02:00
< li data-bs-target = "#myCarousel" data-bs-slide-to = "0" class = "active" > < / li >
< li data-bs-target = "#myCarousel" data-bs-slide-to = "1" > < / li >
< li data-bs-target = "#myCarousel" data-bs-slide-to = "2" > < / li >
2018-11-05 12:24:55 +01:00
< / ol >
< div class = "carousel-inner" >
< div class = "carousel-item active" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "100%" height = "100%" background = "#777" color = "#777" text = "false" title = "false" > }}
2018-11-05 12:24:55 +01:00
< div class = "container" >
2020-06-09 15:44:20 +02:00
< div class = "carousel-caption text-start" >
2018-11-05 12:24:55 +01:00
< h1 > Example headline.< / h1 >
2020-12-11 21:05:33 +01:00
< p > Some representative placeholder content for the first slide of the carousel.< / p >
2021-01-14 00:54:25 +01:00
< p > < a class = "btn btn-lg btn-primary" href = "#" > Sign up today< / a > < / p >
2013-06-24 02:17:08 +02:00
< / div >
< / div >
< / div >
2018-11-05 12:24:55 +01:00
< div class = "carousel-item" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "100%" height = "100%" background = "#777" color = "#777" text = "false" title = "false" > }}
2018-11-05 12:24:55 +01:00
< div class = "container" >
< div class = "carousel-caption" >
< h1 > Another example headline.< / h1 >
2020-12-11 21:05:33 +01:00
< p > Some representative placeholder content for the second slide of the carousel.< / p >
2021-01-14 00:54:25 +01:00
< p > < a class = "btn btn-lg btn-primary" href = "#" > Learn more< / a > < / p >
2017-09-13 20:51:08 +02:00
< / div >
2015-01-23 11:14:12 +01:00
< / div >
2018-11-05 12:24:55 +01:00
< / div >
< div class = "carousel-item" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "100%" height = "100%" background = "#777" color = "#777" text = "false" title = "false" > }}
2018-11-05 12:24:55 +01:00
< div class = "container" >
2020-06-09 15:44:20 +02:00
< div class = "carousel-caption text-end" >
2018-11-05 12:24:55 +01:00
< h1 > One more for good measure.< / h1 >
2020-12-11 21:05:33 +01:00
< p > Some representative placeholder content for the third slide of this carousel.< / p >
2021-01-14 00:54:25 +01:00
< p > < a class = "btn btn-lg btn-primary" href = "#" > Browse gallery< / a > < / p >
2017-09-13 20:51:08 +02:00
< / div >
2013-08-16 22:50:17 +02:00
< / div >
2018-11-05 12:24:55 +01:00
< / div >
< / div >
2021-01-27 16:31:16 +01:00
< button class = "carousel-control-prev" type = "button" data-bs-target = "#myCarousel" data-bs-slide = "prev" >
2018-11-05 12:24:55 +01:00
< span class = "carousel-control-prev-icon" aria-hidden = "true" > < / span >
2020-07-03 13:38:11 +02:00
< span class = "visually-hidden" > Previous< / span >
2021-01-27 16:31:16 +01:00
< / button >
< button class = "carousel-control-next" type = "button" data-bs-target = "#myCarousel" data-bs-slide = "next" >
2018-11-05 12:24:55 +01:00
< span class = "carousel-control-next-icon" aria-hidden = "true" > < / span >
2020-07-03 13:38:11 +02:00
< span class = "visually-hidden" > Next< / span >
2021-01-27 16:31:16 +01:00
< / button >
2018-11-05 12:24:55 +01:00
< / div >
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
< div class = "container marketing" >
<!-- Three columns of text below the carousel -->
< div class = "row" >
< div class = "col-lg-4" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "140" height = "140" background = "#777" color = "#777" class = "rounded-circle" > }}
2018-11-05 12:24:55 +01:00
< h2 > Heading< / h2 >
2020-12-11 21:05:33 +01:00
< p > Some representative placeholder content for the three columns of text below the carousel. This is the first column.< / p >
2021-01-14 00:54:25 +01:00
< p > < a class = "btn btn-secondary" href = "#" > View details » < / a > < / p >
2018-11-05 12:24:55 +01:00
< / div > <!-- /.col - lg - 4 -->
< div class = "col-lg-4" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "140" height = "140" background = "#777" color = "#777" class = "rounded-circle" > }}
2018-11-05 12:24:55 +01:00
< h2 > Heading< / h2 >
2020-12-11 21:05:33 +01:00
< p > Another exciting bit of representative placeholder content. This time, we've moved on to the second column.< / p >
2021-01-14 00:54:25 +01:00
< p > < a class = "btn btn-secondary" href = "#" > View details » < / a > < / p >
2018-11-05 12:24:55 +01:00
< / div > <!-- /.col - lg - 4 -->
< div class = "col-lg-4" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "140" height = "140" background = "#777" color = "#777" class = "rounded-circle" > }}
2018-11-05 12:24:55 +01:00
< h2 > Heading< / h2 >
2020-12-11 21:05:33 +01:00
< p > And lastly this, the third column of representative placeholder content.< / p >
2021-01-14 00:54:25 +01:00
< p > < a class = "btn btn-secondary" href = "#" > View details » < / a > < / p >
2018-11-05 12:24:55 +01:00
< / div > <!-- /.col - lg - 4 -->
< / div > <!-- /.row -->
<!-- START THE FEATURETTES -->
< hr class = "featurette-divider" >
< div class = "row featurette" >
< div class = "col-md-7" >
2018-11-15 07:24:34 +01:00
< h2 class = "featurette-heading" > First featurette heading. < span class = "text-muted" > It’ ll blow your mind.< / span > < / h2 >
2020-12-11 21:05:33 +01:00
< p class = "lead" > Some great placeholder content for the first featurette here. Imagine some exciting prose here.< / p >
2018-11-05 12:24:55 +01:00
< / div >
< div class = "col-md-5" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "500" height = "500" background = "#eee" color = "#aaa" class = "bd-placeholder-img-lg featurette-image img-fluid mx-auto" > }}
2018-11-05 12:24:55 +01:00
< / div >
< / div >
2017-09-13 20:51:08 +02:00
2018-11-05 12:24:55 +01:00
< hr class = "featurette-divider" >
2017-09-13 20:51:08 +02:00
2018-11-05 12:24:55 +01:00
< div class = "row featurette" >
< div class = "col-md-7 order-md-2" >
2018-11-15 07:24:34 +01:00
< h2 class = "featurette-heading" > Oh yeah, it’ s that good. < span class = "text-muted" > See for yourself.< / span > < / h2 >
2020-12-11 21:05:33 +01:00
< p class = "lead" > Another featurette? Of course. More placeholder content here to give you an idea of how this layout would work with some actual real-world content in place.< / p >
2018-11-05 12:24:55 +01:00
< / div >
< div class = "col-md-5 order-md-1" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "500" height = "500" background = "#eee" color = "#aaa" class = "bd-placeholder-img-lg featurette-image img-fluid mx-auto" > }}
2018-11-05 12:24:55 +01:00
< / div >
< / div >
< hr class = "featurette-divider" >
2013-06-24 02:17:08 +02:00
2018-11-05 12:24:55 +01:00
< div class = "row featurette" >
< div class = "col-md-7" >
< h2 class = "featurette-heading" > And lastly, this one. < span class = "text-muted" > Checkmate.< / span > < / h2 >
2020-12-11 21:05:33 +01:00
< p class = "lead" > And yes, this is the last block of representative placeholder content. Again, not really intended to be actually read, simply here to give you a better view of what this would look like with some actual content. Your content.< / p >
2018-11-05 12:24:55 +01:00
< / div >
< div class = "col-md-5" >
2019-01-08 17:33:28 +01:00
{{< placeholder width = "500" height = "500" background = "#eee" color = "#aaa" class = "bd-placeholder-img-lg featurette-image img-fluid mx-auto" > }}
2018-11-05 12:24:55 +01:00
< / div >
< / div >
2017-09-13 20:51:08 +02:00
2018-11-05 12:24:55 +01:00
< hr class = "featurette-divider" >
2013-06-24 02:17:08 +02:00
2018-11-05 12:24:55 +01:00
<!-- /END THE FEATURETTES -->
2013-06-24 02:17:08 +02:00
2018-11-05 12:24:55 +01:00
< / div > <!-- /.container -->
2013-06-24 02:17:08 +02:00
2013-07-27 05:48:10 +02:00
2018-11-05 12:24:55 +01:00
<!-- FOOTER -->
< footer class = "container" >
2020-06-09 15:44:20 +02:00
< p class = "float-end" > < a href = "#" > Back to top< / a > < / p >
2021-01-05 22:56:44 +01:00
< p > © 2017– {{< year > }} Company, Inc. · < a href = "#" > Privacy< / a > · < a href = "#" > Terms< / a > < / p >
2018-11-05 12:24:55 +01:00
< / footer >
< / main >