diff --git a/src/Plugin/Block/DrupalPlanetFeedsBlock.php b/src/Plugin/Block/DrupalPlanetFeedsBlock.php
index 10d6021..4d2df4d 100644
--- a/src/Plugin/Block/DrupalPlanetFeedsBlock.php
+++ b/src/Plugin/Block/DrupalPlanetFeedsBlock.php
@@ -20,14 +20,14 @@ class DrupalPlanetFeedsBlock extends BlockBase {
    * {@inheritdoc}
    */
   public function blockForm($form, FormStateInterface $form_state) {
-    $form['number_of_feeds_to_display'] = array(
+    $form['number_of_feeds_to_display'] = [
       '#type' => 'number',
       '#title' => $this->t('Number of feeds to display'),
       '#description' => $this->t('Enter the number of planets feeds to be displayed.'),
       '#default_value' => isset($this->configuration['number_of_feeds_to_display']) ? $this->configuration['number_of_feeds_to_display'] : '',
       '#min' => 1,
       '#max' => 30,
-    );
+    ];
     $options = array_merge(['' => t(' - Select -')], \Drupal::config('views.settings')->get('field_rewrite_elements'));
     $form['html_tag_to_render'] = [
       '#type' => 'select',
@@ -78,6 +78,10 @@ class DrupalPlanetFeedsBlock extends BlockBase {
         ];
       }
     }
+    $build['drupal_planet_feed_more'] = [
+      '#type' => 'more_link',
+      '#url' => Url::fromUri('https://www.drupal.org/planet'),
+    ];
 
     $build['#cache']['max-age'] = 0;
     return $build;
