aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/docs/versions.html
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-05-10 14:21:36 +0200
committerMario Vavti <mario@mariovavti.com>2019-05-10 14:21:36 +0200
commit9866053f0ce44721c11990c9f9407e7428757c99 (patch)
tree6e414efa36c3bda00205918cecb9122f951427e3 /vendor/twbs/bootstrap/site/docs/versions.html
parent89a2c1a09c896ac3a23df26a1783f5c682188a56 (diff)
downloadvolse-hubzilla-9866053f0ce44721c11990c9f9407e7428757c99.tar.gz
volse-hubzilla-9866053f0ce44721c11990c9f9407e7428757c99.tar.bz2
volse-hubzilla-9866053f0ce44721c11990c9f9407e7428757c99.zip
update bootstrap to version 4.3.1
Diffstat (limited to 'vendor/twbs/bootstrap/site/docs/versions.html')
-rw-r--r--vendor/twbs/bootstrap/site/docs/versions.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/docs/versions.html b/vendor/twbs/bootstrap/site/docs/versions.html
new file mode 100644
index 000000000..4f8f4ea3a
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/docs/versions.html
@@ -0,0 +1,29 @@
+---
+layout: simple
+title: Versions
+description: An appendix of hosted documentation for nearly every release of Bootstrap, from v1 through v4.
+---
+
+<div class="row">
+{% for release in site.data.docs-versions %}
+ <div class="col-md">
+ <h2>{{ release.group }}</h2>
+ <p>{{ release.description }}</p>
+ {% assign versions = release.versions | reverse %}
+ {% for version in versions %}
+ {% if forloop.first %}<div class="list-group">{% endif %}
+ {% if version.v == site.docs_version %}
+ <a class="list-group-item list-group-item-action py-2 text-primary d-flex justify-content-between align-items-center" href="{{ release.baseurl }}/{{ version.v }}/">
+ {{ version.v }}
+ <span class="badge badge-primary">Latest</span>
+ </a>
+ {% else %}
+ <a class="list-group-item list-group-item-action py-2 text-primary" href="{{ release.baseurl }}/{{ version.v }}/">
+ {{ version.v }}
+ </a>
+ {% endif %}
+ {% if forloop.last %}</div>{% endif %}
+ {% endfor %}
+ </div>
+{% endfor %}
+</div>