2018-01-15 01:06:52 +01:00
---
2018-10-15 10:49:15 +02:00
layout: simple
2018-01-15 01:06:52 +01:00
title: Examples
description: Quickly get a project started with any of our examples ranging from using parts of the framework to custom components and layouts.
2018-12-30 16:08:28 +01:00
redirect_from: "/examples/"
2018-01-15 01:06:52 +01:00
---
{% for entry in site.data.examples %}
< h2 > {{ entry.category | capitalize }}< / h2 >
< p > {{ entry.description }}< / p >
{% for example in entry.examples %}
{% if forloop.first %}< div class = "row" > {% endif %}
2018-01-15 22:37:38 +01:00
< div class = "col-sm-6 col-md-4 col-xl-3 mb-3" >
2018-01-15 01:06:52 +01:00
< a href = "{{ site.baseurl }}/docs/{{ site.docs_version }}/examples/{{ example.name | slugify }}/" >
2018-11-17 12:31:49 +01:00
< img class = "img-thumbnail mb-3" srcset = "{{ site . baseurl } } / docs / { { site . docs_version } } / assets / img / examples / { { example . name | slugify } } . png ,
{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/img/examples/{{ example.name | slugify }}@2x.png 2x"
2020-05-09 23:33:01 +02:00
src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/img/examples/{{ example.name | slugify }}.png"
alt="{{ example.name }} screenshot" width="480" height="300">
2018-01-15 01:06:52 +01:00
< h5 class = "mb-1" > {{ example.name }}< / h5 >
< / a >
< p class = "text-muted" > {{ example.description }}< / p >
< / div >
{% if forloop.last %}< / div > {% endif %}
{% endfor %}
{% endfor %}
2020-05-09 23:33:01 +02:00
< hr class = "my-5" >
< div class = "container" >
< div class = "text-center" >
< div class = "masthead-followup-icon d-inline-block mb-2 text-white bg-danger" >
{% include icons/droplet-fill.svg width="32" height="32" %}
< / div >
< h2 > Go further with Bootstrap Themes< / h2 >
< p class = "col-md-10 mx-auto lead font-weight-normal" >
Need something more than these examples? Take Bootstrap to the next level with premium themes from the < a href = "{{ site.themes }}" > official Bootstrap Themes marketplace< / a > . They’ re built as their own extended frameworks, rich with new components and plugins, documentation, and powerful build tools.
< / p >
< a href = "{{ site.themes }}" class = "btn btn-lg btn-outline-primary mb-3" > Browse themes< / a >
< / div >
< img class = "d-block img-fluid mt-3 mx-auto" srcset = "{{ site . baseurl } } / docs / { { site . docs_version } } / assets / img / bootstrap-themes-collage . png ,
{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/img/bootstrap-themes-collage@2x.png 2x"
src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/img/bootstrap-themes-collage.png"
alt="Bootstrap Themes" width="1151" height="320">
< / div >