open sidebar links in new window/tab
diff --git a/templates/base.html b/templates/base.html
index 1cb32c0..a07a880 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -38,10 +38,10 @@
{% endfor %}
{% endif %}
{% for name, link in LINKS %}
- <li><a href="{{ link }}">{{ name }}</a></li>
+ <li><a href="{{ link }}" target="_blank">{{ name }}</a></li>
{% endfor %}
{% for name, link in SOCIAL %}
- <li><a href="{{ link }}">{{ name }}</a></li>
+ <li><a href="{{ link }}" target="_blank">{{ name }}</a></li>
{% endfor %}
</ul>
</div>