diff --git a/layouts/partials/author.html b/layouts/partials/author.html
index 70c485e..2c70632 100644
--- a/layouts/partials/author.html
+++ b/layouts/partials/author.html
@@ -6,19 +6,5 @@
{{ .Site.Params.author }}
{{ .Site.Params.info }}
-{{ with .Site.Params.social }}
-
+{{ partial "social.html" . }}
-{{ end }}
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
new file mode 100644
index 0000000..814ecb0
--- /dev/null
+++ b/layouts/partials/social.html
@@ -0,0 +1,11 @@
+{{ with .Site.Params.social }}
+
+ {{ range sort . "weight" }}
+ -
+
+
+
+
+ {{ end }}
+
+{{ end }}