diff --git a/_includes/navbarlink.html b/_includes/navbarlink.html
new file mode 100644
index 0000000..5a94a2d
--- /dev/null
+++ b/_includes/navbarlink.html
@@ -0,0 +1,16 @@
+{% capture before %}{{ include.link[1] | split: "://" | first }}{% endcapture %}
+{% capture after %}{{ include.link[1] | split: "://" | last }}{% endcapture %}
+{% assign internal = true %}
+{% if before != after %}
+ {% if before == "http" or before == "https" %}
+ {% assign internal = false %}
+ {% endif %}
+{% endif %}
+
+{% if internal %}
+ {% capture linkurl %}{{ site.baseurl }}/{{ include.link[1] }}{% endcapture %}
+{% else %}
+ {% capture linkurl %}{{ include.link[1] }}{% endcapture %}
+{% endif %}
+
+{{ include.link[0] }}