diff --git a/templates/navigation/pager.html.twig b/templates/navigation/pager.html.twig
new file mode 100644
index 0000000000000000000000000000000000000000..1bc73380c69a8b78ba4bcb794ff3f0527652e2b0
--- /dev/null
+++ b/templates/navigation/pager.html.twig
@@ -0,0 +1,21 @@
+{#
+/**
+ * @file
+ * Theme override for a pager.
+ *
+ * Available variables:
+ * - modifier_class: Variant classes to modify component.
+ * - heading: Accessible heading.
+ * - items: List of pager items.
+ *
+ */
+#}
+
+{% if items %}
+  {% include '@components/pager/pager.twig' with {
+    'modifier': '',
+    'heading': 'Pagination'|t,
+    'items': items,
+    'current': current
+  } only %}
+{% endif %}