diff options
| author | XhmikosR <[email protected]> | 2018-10-15 11:49:15 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-10-15 12:54:51 +0300 |
| commit | 43c20b912eed45e43be83d71e5aec9136aecb137 (patch) | |
| tree | f44f2cf9cde6b82e098702369056a449ab7ce481 /site/docs | |
| parent | 7d6a0aa24d2a88632daedd79ea981aa8a4aac503 (diff) | |
| download | bootstrap-43c20b912eed45e43be83d71e5aec9136aecb137.tar.xz bootstrap-43c20b912eed45e43be83d71e5aec9136aecb137.zip | |
Combine examples and simple layouts.
Diffstat (limited to 'site/docs')
| -rw-r--r-- | site/docs/4.1/examples/index.html | 2 | ||||
| -rw-r--r-- | site/docs/versions.html | 52 |
2 files changed, 22 insertions, 32 deletions
diff --git a/site/docs/4.1/examples/index.html b/site/docs/4.1/examples/index.html index 3bb984382..328ec397a 100644 --- a/site/docs/4.1/examples/index.html +++ b/site/docs/4.1/examples/index.html @@ -1,5 +1,5 @@ --- -layout: examples +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/" diff --git a/site/docs/versions.html b/site/docs/versions.html index 935872de6..f883f5285 100644 --- a/site/docs/versions.html +++ b/site/docs/versions.html @@ -4,35 +4,25 @@ title: Versions description: An appendix of hosted documentation for nearly every release of Bootstrap, from v1 through v4. --- -<header class="d-flex flex-column flex-md-row align-items-md-center p-5 bg-light"> - <div class="pt-md-3 pb-md-4"> - <h1 class="bd-title mt-0">{{ page.title | smartify }}</h1> - <p class="bd-lead">{{ page.description | smartify }}</p> +<div class="row"> +{% for release in site.data.docs-versions %} + <div class="col-md"> + <h2>{{ release.group }}</h2> + <p>{{ release.description }}</p> + {% for version in release.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> - {% include ads.html %} -</header> - -<main class="bd-content p-5"> - <div class="row"> - {% for release in site.data.docs-versions %} - <div class="col-md"> - <h2>{{ release.group }}</h2> - <p>{{ release.description }}</p> - {% for version in release.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> -</main> +{% endfor %} +</div> |
