about summary refs log tree commit diff
path: root/layouts/partials/social.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/social.html')
-rw-r--r--layouts/partials/social.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
new file mode 100644
index 0000000..2a10cb5
--- /dev/null
+++ b/layouts/partials/social.html
@@ -0,0 +1,17 @@
+<table class="social-icons">
+
+  {{ range $.Site.Params.Social }}
+  <tr>
+    <th>
+      {{ $network := humanize .id }}
+      {{ $network | title }}
+      {{ partial "font-awesome.html" (dict "iconName" .id "network" $network) }}
+    </th>
+    <td>
+      <a href="{{ .url }}" rel="me">
+        {{ .name }}
+      </a>
+    </td>
+  </tr>
+  {{ end }}
+</table>