aboutsummaryrefslogtreecommitdiff
path: root/_includes/external_links.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/external_links.html')
-rw-r--r--_includes/external_links.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/_includes/external_links.html b/_includes/external_links.html
new file mode 100644
index 0000000..4a04694
--- /dev/null
+++ b/_includes/external_links.html
@@ -0,0 +1,11 @@
+<p class="social-links">
+ {% for link in site.data.external_links %}
+ <a href="{{ link.url | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">
+ {{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
+ </a>
+ <!-- Separation -->
+ {% unless forloop.last %}
+ <span>|</span>
+ {% endunless %}
+ {% endfor %}
+</p>