diff options
| author | XhmikosR <[email protected]> | 2020-11-12 20:40:15 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-12 20:40:15 +0200 |
| commit | 49d5756f0113c5b6b2318f4e6ce7f076eda166fe (patch) | |
| tree | 637caa5510c33fb4f6dee48aae13bad0bd7c7597 | |
| parent | 03ec5342e01717ec722849d7a77c20cc291626a9 (diff) | |
| download | bootstrap-49d5756f0113c5b6b2318f4e6ce7f076eda166fe.tar.xz bootstrap-49d5756f0113c5b6b2318f4e6ce7f076eda166fe.zip | |
navbar.md: remove `loading=lazy` from snippets (#32138)
| -rw-r--r-- | site/docs/4.5/components/navbar.md | 4 |
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> |
