diff --git a/README.md b/README.md
index f40dc87f..b3caecbc 100644
--- a/README.md
+++ b/README.md
@@ -535,7 +535,7 @@ Parameters:
style
Optional. String. CSS. Image style. Merged with implementation.
type
- Optional. String. Type of layout. Must be filled-rows
, grid
, or rows
(default).
+ Optional. String. Type of layout. Must be grid
or rows
(default).
width
Optional. String. CSS value. Image width.
diff --git a/exampleSite/content/shortcodes/gallery/index.md b/exampleSite/content/shortcodes/gallery/index.md
index 81cf443c..4a8f2dc2 100644
--- a/exampleSite/content/shortcodes/gallery/index.md
+++ b/exampleSite/content/shortcodes/gallery/index.md
@@ -308,18 +308,6 @@ Result:
Code:
-```go-text-template
-{{* paige/gallery images="*.jpg" maxheight="10rem" type="filled-rows" /*/>}}
-```
-
-Result:
-
-{{< paige/gallery images="*.jpg" maxheight="10rem" type="filled-rows" />}}
-
----
-
-Code:
-
```go-text-template
{{* paige/gallery images="*.jpg" type="grid" /*/>}}
```
diff --git a/layouts/shortcodes/paige/gallery.html b/layouts/shortcodes/paige/gallery.html
index 0de2c939..49be729d 100644
--- a/layouts/shortcodes/paige/gallery.html
+++ b/layouts/shortcodes/paige/gallery.html
@@ -42,32 +42,7 @@
{{/* The markup below cannot be indented due to Markdown. */}}
-{{ if eq $type "filled-rows" }}
-
-{{ with $inner }}
-{{ . }}
-{{ else }}
-{{ range $resources }}
-{{- partial "paige/image.html" (dict
- "breakpoints" $breakpoints
- "class" $class
- "densities" $densities
- "fetchpriority" $fetchpriority
- "height" $height
- "linked" $linked
- "loading" $loading
- "maxheight" $maxheight
- "maxwidth" $maxwidth
- "page" $page
- "process" $process
- "resource" .
- "style" (print $style "; flex: 1 1 auto; object-fit: cover")
- "width" $width
-) -}}
-{{ end }}
-{{ end }}
-
-{{ else if eq $type "grid" }}
+{{ if eq $type "grid" }}