diff --git a/core/modules/views/templates/views-more.html.twig b/core/modules/views/templates/views-more.html.twig
new file mode 100644
index 0000000..833ab69
--- /dev/null
+++ b/core/modules/views/templates/views-more.html.twig
@@ -0,0 +1,18 @@
+{#
+/**
+ * @file
+ * Default theme implementation for a Views more link.
+ *
+ * Available variables:
+ * - view: The view object.
+ * - more_url: the url for the Views more link.
+ * - link_text: the text for the Views more link.
+ *
+ * @ingroup views_templates
+ */
+#}
+<div class="more-link">
+  <a href="{{ more_url }}">
+    {{ link_text }}
+  </a>
+</div>
diff --git a/core/modules/views/templates/views-more.tpl.php b/core/modules/views/templates/views-more.tpl.php
deleted file mode 100644
index 0b7080b..0000000
--- a/core/modules/views/templates/views-more.tpl.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-/**
- * @file
- * Theme the more link.
- *
- * - $view: The view object.
- * - $more_url: the url for the more link.
- * - $link_text: the text for the more link.
- *
- * @ingroup views_templates
- */
-?>
-
-<div class="more-link">
-  <a href="<?php print $more_url ?>">
-    <?php print $link_text; ?>
-  </a>
-</div>
