diff --git a/templates/views-show-more-pager.html.twig b/templates/views-show-more-pager.html.twig
index 5a3e38c..f9716a8 100644
--- a/templates/views-show-more-pager.html.twig
+++ b/templates/views-show-more-pager.html.twig
@@ -18,7 +18,7 @@
       <ul{{ attributes }}>
         <li class="pager__item">
           {% if item.href %}
-            <a href="{{ item.href }}" title="{{ 'Go to next page'|t }}" rel="next">{{ item.text }}</a>
+            {{ link(item.text, item.href, item.attributes) }}
           {% else %}
             {{ item.text }}
           {% endif %}
diff --git a/views_show_more.module b/views_show_more.module
index 955a499..104efdf 100644
--- a/views_show_more.module
+++ b/views_show_more.module
@@ -35,6 +35,9 @@ function views_show_more_preprocess_views_show_more_pager(&$vars) {
     $vars['item'] = [
       'href' => Url::fromRoute('<current>', [], $options)->toString(),
       'text' => $vars['options']['show_more_text'],
+      'attributes' => [
+        'title' => t('Go to next page'),
+      ],
     ];
   }
   else {
