diff options
Diffstat (limited to 'vendor/twbs/bootstrap/site/layouts/partials/home/plugins.html')
-rw-r--r-- | vendor/twbs/bootstrap/site/layouts/partials/home/plugins.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/home/plugins.html b/vendor/twbs/bootstrap/site/layouts/partials/home/plugins.html index ab48d9bc6..00cf8133a 100644 --- a/vendor/twbs/bootstrap/site/layouts/partials/home/plugins.html +++ b/vendor/twbs/bootstrap/site/layouts/partials/home/plugins.html @@ -1,16 +1,16 @@ <section class="pb-md-5 mb-5"> <div class="col-lg-8 mb-5"> <div class="masthead-followup-icon d-inline-block mb-3" style="--bg-rgb: var(--bs-warning-rgb);"> - <svg class="bi fs-1"><use xlink:href="#plugin"></use></svg> + <svg class="bi fs-1" aria-hidden="true"><use xlink:href="#plugin"></use></svg> </div> <h2 class="display-5 mb-3 fw-semibold lh-sm">Powerful JavaScript plugins without jQuery</h2> <p class="lead fw-normal"> Add toggleable hidden elements, modals and offcanvas menus, popovers and tooltips, and so much moreāall without jQuery. Bootstrap's JavaScript is HTML-first, meaning most plugins are added with <code>data</code> attributes in your HTML. Need more control? Include individual plugins programmatically. </p> - <p class="d-flex justify-content-start lead fw-normal mb-md-0"> + <p class="d-flex lead fw-normal mb-md-0"> <a href="/docs/{{ .Site.Params.docs_version }}/getting-started/javascript/" class="icon-link icon-link-hover fw-semibold"> Learn more about Bootstrap JavaScript - <svg class="bi"><use xlink:href="#arrow-right"></use></svg> + <svg class="bi" aria-hidden="true"><use xlink:href="#arrow-right"></use></svg> </a> </p> </div> @@ -50,6 +50,7 @@ <hr class="my-4"> <div class="row g-3"> {{- range $plugin := .Site.Data.plugins -}} + {{- /* TODO we should use urls.JoinPath here too, but the links include `#` which gets escaped */ -}} {{- $href := printf "/docs/%s/%s" $.Site.Params.docs_version $plugin.link }} <div class="col-sm-6 mb-2"> <a class="d-block pe-lg-4 text-decoration-none lh-sm" href="{{ $href }}"> |