]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
navbar.md: remove `loading=lazy` from snippets (#32138)
authorXhmikosR <xhmikosr@gmail.com>
Thu, 12 Nov 2020 18:40:15 +0000 (20:40 +0200)
committerGitHub <noreply@github.com>
Thu, 12 Nov 2020 18:40:15 +0000 (20:40 +0200)
site/docs/4.5/components/navbar.md

index 4a4ebf20c9e763bd1d690bcd71d9ba6282622c86..195d407f1b966dcfc10289dd64a86f28b71570a3 100644 (file)
@@ -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>