Merge pull request #609 from JVimes/patch-1

Fix copy-paste error in responsive gallery code sample
This commit is contained in:
Nuno Coração 2023-03-14 22:32:42 +00:00 committed by GitHub
commit 8feb61c633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -268,13 +268,13 @@ In order to add images to the gallery, use `img` tags for each image and add `cl
```md ```md
{{</* gallery */>}} {{</* gallery */>}}
<img src="gallery/01.jpg" class="grid-w33" /> <img src="gallery/01.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
<img src="gallery/02.jpg" class="grid-w33" /> <img src="gallery/02.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
<img src="gallery/03.jpg" class="grid-w33" /> <img src="gallery/03.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
<img src="gallery/04.jpg" class="grid-w33" /> <img src="gallery/04.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
<img src="gallery/05.jpg" class="grid-w33" /> <img src="gallery/05.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
<img src="gallery/06.jpg" class="grid-w33" /> <img src="gallery/06.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
<img src="gallery/07.jpg" class="grid-w33" /> <img src="gallery/07.jpg" class="grid-w50 md:grid-w33 xl:grid-w25" />
{{</* /gallery */>}} {{</* /gallery */>}}
``` ```