diff --git a/core/modules/system/system.tokens.inc b/core/modules/system/system.tokens.inc
index 20d5ec1..4cc418f 100644
--- a/core/modules/system/system.tokens.inc
+++ b/core/modules/system/system.tokens.inc
@@ -48,6 +48,10 @@ function system_token_info() {
     'name' => t("Login page"),
     'description' => t("The URL of the site's login page."),
   );
+  $info['page-number'] = array(
+    'name' => t('Page number'),
+    'description' => t('The page number for pages that contain paged lists'),
+  );
 
   // Date related tokens.
   $date['short'] = array(
@@ -130,6 +134,10 @@ function system_tokens($type, $tokens, array $data = array(), array $options = a
         case 'login-url':
           $replacements[$original] = \Drupal::url('user.page', [], $url_options);
           break;
+
+        case 'page-number':
+          $replacements[$original] = preg_match('/^\d+/', \Drupal::request()->query->get('page'), $match) ? $match[0] + 1 : '';
+          break;
       }
     }
   }
