diff options
author | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
commit | bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6 (patch) | |
tree | 8929845be585b09d0f420621281c5531e1efad3e /vendor/twbs/bootstrap/site/docs/4.5/examples/index.html | |
parent | 6f93d9848c43019d43ea76c27d42d657ba031cd7 (diff) | |
parent | fdefa101d84dc2a9424eaedbdb003a4c30ec5d01 (diff) | |
download | volse-hubzilla-5.0.tar.gz volse-hubzilla-5.0.tar.bz2 volse-hubzilla-5.0.zip |
Merge branch '5.0RC'5.0
Diffstat (limited to 'vendor/twbs/bootstrap/site/docs/4.5/examples/index.html')
-rw-r--r-- | vendor/twbs/bootstrap/site/docs/4.5/examples/index.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/docs/4.5/examples/index.html b/vendor/twbs/bootstrap/site/docs/4.5/examples/index.html new file mode 100644 index 000000000..6ac9a6718 --- /dev/null +++ b/vendor/twbs/bootstrap/site/docs/4.5/examples/index.html @@ -0,0 +1,44 @@ +--- +layout: simple +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. +redirect_from: "/examples/" +--- + +{% 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 %} + <div class="col-sm-6 col-md-4 col-xl-3 mb-3"> + <a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/examples/{{ example.name | slugify }}/"> + <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" + src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/img/examples/{{ example.name | slugify }}.png" + alt="{{ example.name }} screenshot" width="480" height="300" loading="lazy"> + <h5 class="mb-1">{{ example.name }}</h5> + </a> + <p class="text-muted">{{ example.description }}</p> + </div> + {% if forloop.last %}</div>{% endif %} + {% endfor %} +{% endfor %} + +<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" loading="lazy"> +</div> |