diff --git a/bootstrap_clean_blog.theme b/bootstrap_clean_blog.theme
index cba24cf..b530cfe 100644
--- a/bootstrap_clean_blog.theme
+++ b/bootstrap_clean_blog.theme
@@ -59,9 +59,17 @@ function bootstrap_clean_blog_preprocess_page(&$variables) {
 
   $variables['site_name'] = $site_name;
   $variables['header_image'] = $header_image;
-  $variables['facebook'] = theme_get_setting('bootstrap_clean_blog_social_facebook');
-  $variables['twitter'] = theme_get_setting('bootstrap_clean_blog_social_twitter');
-  $variables['github'] = theme_get_setting('bootstrap_clean_blog_social_github');
+  $variables['social_links'] = array_filter([
+    'facebook' => theme_get_setting('bootstrap_clean_blog_social_facebook'),
+    'twitter' => theme_get_setting('bootstrap_clean_blog_social_twitter'),
+    'github' => theme_get_setting('bootstrap_clean_blog_social_github'),
+    'drupal' => theme_get_setting('bootstrap_clean_blog_social_drupal'),
+    'instagram' => theme_get_setting('bootstrap_clean_blog_social_instagram'),
+    'reddit' => theme_get_setting('bootstrap_clean_blog_social_reddit'),
+    'flickr' => theme_get_setting('bootstrap_clean_blog_social_flickr'),
+    'linkedin' => theme_get_setting('bootstrap_clean_blog_social_linkedin'),
+  ]);
+
 }
 
 /**
diff --git a/config/install/bootstrap_clean_blog.settings.yml b/config/install/bootstrap_clean_blog.settings.yml
index 0d47553..14f9a3f 100644
--- a/config/install/bootstrap_clean_blog.settings.yml
+++ b/config/install/bootstrap_clean_blog.settings.yml
@@ -9,3 +9,8 @@ bootstrap_clean_blog_header_image: ''
 bootstrap_clean_blog_social_facebook: 'https://www.facebook.com'
 bootstrap_clean_blog_social_twitter: 'https://twitter.com'
 bootstrap_clean_blog_social_github: 'https://github.com'
+bootstrap_clean_blog_social_drupal: 'https://drupal.org'
+bootstrap_clean_blog_social_instagram: 'https://instagram.com'
+bootstrap_clean_blog_social_reddit: 'https://reddit.com'
+bootstrap_clean_blog_social_flickr: 'https://flickr.com'
+bootstrap_clean_blog_social_linkedin: 'https://linkedin.com'
diff --git a/templates/page.html.twig b/templates/page.html.twig
index 2285dfd..8072a12 100644
--- a/templates/page.html.twig
+++ b/templates/page.html.twig
@@ -146,38 +146,18 @@
       <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
         {# Social buttons block #}
         {% block social_buttons %}
-        {% if (twitter or facebook or github) %}
+        {% if social_links %}
         <ul class="list-inline text-center">
-          {% if twitter %}
+          {% for network, url in social_links %}
           <li>
-            <a target="_blank" href="{{ twitter }}">
+            <a target="_blank" href="{{ url }}">
               <span class="fa-stack fa-lg">
                 <i class="fa fa-circle fa-stack-2x"></i>
-                <i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
+                <i class="fa fa-{{ network }} fa-stack-1x fa-inverse"></i>
               </span>
             </a>
           </li>
-          {% endif %}
-          {% if facebook %}
-          <li>
-            <a target="_blank" href="{{ facebook }}">
-              <span class="fa-stack fa-lg">
-                <i class="fa fa-circle fa-stack-2x"></i>
-                <i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
-              </span>
-            </a>
-          </li>
-          {% endif %}
-          {% if github %}
-          <li>
-            <a target="_blank" href="{{ github }}">
-              <span class="fa-stack fa-lg">
-                <i class="fa fa-circle fa-stack-2x"></i>
-                <i class="fa fa-github fa-stack-1x fa-inverse"></i>
-              </span>
-            </a>
-          </li>
-          {% endif %}
+          {% endfor %}
         </ul>
         {% endif %}
         {% endblock %}
diff --git a/theme-settings.php b/theme-settings.php
index 4d0f777..d004756 100644
--- a/theme-settings.php
+++ b/theme-settings.php
@@ -74,4 +74,35 @@ function bootstrap_clean_blog_form_system_theme_settings_alter(&$form, FormState
     '#title' => t('Github'),
     '#default_value' => theme_get_setting('bootstrap_clean_blog_social_github'),
   );
+
+  $form['social_buttons']['bootstrap_clean_blog_social_drupal'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Drupal'),
+    '#default_value' => theme_get_setting('bootstrap_clean_blog_social_drupal'),
+  );
+
+  $form['social_buttons']['bootstrap_clean_blog_social_instagram'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Instagram'),
+    '#default_value' => theme_get_setting('bootstrap_clean_blog_social_instagram'),
+  );
+
+  $form['social_buttons']['bootstrap_clean_blog_social_flickr'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Flickr'),
+    '#default_value' => theme_get_setting('bootstrap_clean_blog_social_flickr'),
+  );
+
+  $form['social_buttons']['bootstrap_clean_blog_social_reddit'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Reddit'),
+    '#default_value' => theme_get_setting('bootstrap_clean_blog_social_reddit'),
+  );
+
+  $form['social_buttons']['bootstrap_clean_blog_social_linkedin'] = array(
+    '#type' => 'textfield',
+    '#title' => t('LinkedIn'),
+    '#default_value' => theme_get_setting('bootstrap_clean_blog_social_linkedin'),
+  );
+
 }
