mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-26 17:11:52 +02:00
Merge pull request #609 from JVimes/patch-1
Fix copy-paste error in responsive gallery code sample
This commit is contained in:
commit
8feb61c633
1 changed files with 7 additions and 7 deletions
|
@ -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 */>}}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue