diff --git a/content/en/templates/lists.md b/content/en/templates/lists.md
index c2140b472..be9df664c 100644
--- a/content/en/templates/lists.md
+++ b/content/en/templates/lists.md
@@ -424,7 +424,7 @@ In the above example, you may want `{{.Title}}` to point the `title` field you h
### By Publish Date
{{< code file="layouts/partials/by-page-publish-date.html" >}}
-
+
{{ range .Pages.GroupByPublishDate "2006-01" }}
{{ .Key }}
@@ -438,6 +438,41 @@ In the above example, you may want `{{.Title}}` to point the `title` field you h
{{ end }}
{{< /code >}}
+
+### By Lastmod
+
+{{< code file="layouts/partials/by-page-lastmod.html" >}}
+
+{{ range .Pages.GroupByLastmod "2006-01" }}
+{{ .Key }}
+
+{{ end }}
+{{< /code >}}
+
+### By Expiry Date
+
+{{< code file="layouts/partials/by-page-expiry-date.html" >}}
+
+{{ range .Pages.GroupByExpiryDate "2006-01" }}
+{{ .Key }}
+
+{{ end }}
+{{< /code >}}
+
### By Page Parameter
{{< code file="layouts/partials/by-page-param.html" >}}