aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/function-filters-content.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/partials/function-filters-content.html')
-rw-r--r--themes/default/layouts/partials/function-filters-content.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/themes/default/layouts/partials/function-filters-content.html b/themes/default/layouts/partials/function-filters-content.html
new file mode 100644
index 0000000..8ebad51
--- /dev/null
+++ b/themes/default/layouts/partials/function-filters-content.html
@@ -0,0 +1,10 @@
+{{- $input := . -}}
+
+{{- $notExpired := where $input "Params.expirydate" "eq" nil -}}
+{{- $notUnlisted := where $input "Params.unlisted" "eq" nil -}}
+
+{{- $filteredPages := $notExpired | intersect $notUnlisted -}}
+
+{{- $output := $filteredPages -}}
+
+{{- return $output -}}