aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-11-12 20:40:15 +0200
committerGitHub <[email protected]>2020-11-12 20:40:15 +0200
commit49d5756f0113c5b6b2318f4e6ce7f076eda166fe (patch)
tree637caa5510c33fb4f6dee48aae13bad0bd7c7597
parent03ec5342e01717ec722849d7a77c20cc291626a9 (diff)
downloadbootstrap-49d5756f0113c5b6b2318f4e6ce7f076eda166fe.tar.xz
bootstrap-49d5756f0113c5b6b2318f4e6ce7f076eda166fe.zip
navbar.md: remove `loading=lazy` from snippets (#32138)
-rw-r--r--site/docs/4.5/components/navbar.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/docs/4.5/components/navbar.md b/site/docs/4.5/components/navbar.md
index 4a4ebf20c..195d407f1 100644
--- a/site/docs/4.5/components/navbar.md
+++ b/site/docs/4.5/components/navbar.md
@@ -96,7 +96,7 @@ Adding images to the `.navbar-brand` will likely always require custom styles or
<!-- Just an image -->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">
- <img src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/brand/bootstrap-solid.svg" width="30" height="30" alt="" loading="lazy">
+ <img src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/brand/bootstrap-solid.svg" width="30" height="30" alt="">
</a>
</nav>
{% endcapture %}
@@ -106,7 +106,7 @@ Adding images to the `.navbar-brand` will likely always require custom styles or
<!-- Image and text -->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">
- <img src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/brand/bootstrap-solid.svg" width="30" height="30" class="d-inline-block align-top" alt="" loading="lazy">
+ <img src="{{ site.baseurl }}/docs/{{ site.docs_version }}/assets/brand/bootstrap-solid.svg" width="30" height="30" class="d-inline-block align-top" alt="">
Bootstrap
</a>
</nav>