diff --git a/core/includes/install.inc b/core/includes/install.inc
index 8c91dc8..0f38e35 100644
--- a/core/includes/install.inc
+++ b/core/includes/install.inc
@@ -106,6 +106,30 @@ function drupal_install_profile_distribution_name() {
 }
 
 /**
+ * Loads the installation profile, extracting its defined version.
+ *
+ * @return
+ *   The distribution version defined in the profile's .info.yml file. Defaults to
+ *   \Drupal::VERSION if none is explicitly provided by the installation profile.
+ *
+ * @see install_profile_info()
+ */
+function drupal_install_profile_distribution_version() {
+  // During installation, the profile information is stored in the global
+  // installation state (it might not be saved anywhere yet).
+  if (drupal_installation_attempted()) {
+    global $install_state;
+    return isset($install_state['profile_info']['version']) ? $install_state['profile_info']['version'] : \Drupal::VERSION;
+  }
+  // At all other times, we load the profile via standard methods.
+  else {
+    $profile = drupal_get_profile();
+    $info = system_get_info('module', $profile);
+    return $info['version'];
+  }
+}
+
+/**
  * Detects all supported databases that are compiled into PHP.
  *
  * @return
diff --git a/core/includes/theme.inc b/core/includes/theme.inc
index bfd1aaf..078b033 100644
--- a/core/includes/theme.inc
+++ b/core/includes/theme.inc
@@ -2549,6 +2549,7 @@ function template_preprocess_install_page(&$variables) {
   // Override the site name that is displayed on the page, since Drupal is
   // still in the process of being installed.
   $variables['site_name'] = drupal_install_profile_distribution_name();
+  $variables['site_version'] = drupal_install_profile_distribution_version();
 }
 
 /**
diff --git a/core/themes/seven/install-page.css b/core/themes/seven/install-page.css
index 7981932..4c2be11 100644
--- a/core/themes/seven/install-page.css
+++ b/core/themes/seven/install-page.css
@@ -54,6 +54,9 @@
   .install-page .name-and-slogan {
     margin: 0 0 1.45em 0;
   }
+  .install-page .site-version {
+    display: none;
+  }
 }
 
 @media all and (min-width: 48em) { /* 768px */
@@ -112,6 +115,10 @@
   [dir="rtl"] .install-page .name-and-slogan h1 {
     margin: 0.75em 1.9em 0.75em 0;
   }
+  .install-page .site-version {
+    vertical-align: super;
+    font-size:x-small
+  }
 }
 
 /**
diff --git a/core/themes/seven/install-page.html.twig b/core/themes/seven/install-page.html.twig
index 1e9a1c2..bbbec1f 100644
--- a/core/themes/seven/install-page.html.twig
+++ b/core/themes/seven/install-page.html.twig
@@ -28,7 +28,11 @@
     {% if site_name or site_slogan %}
       <div class="name-and-slogan">
         {% if site_name %}
-          <h1>{{ site_name }}</h1>
+          <h1>{{ site_name }}
+          {% if site_version %}
+          <span class="site-version">{{ site_version }}</span>
+          {% endif %}
+          </h1>
         {% endif %}
         {% if site_slogan %}
           <div class="site-slogan">{{ site_slogan }}</div>
