My personal website
1-
2 function isExternalURL(href) {
3 return href.startsWith("http://") || href.startsWith("https://") || href.startsWith("//")
4 }
5
6
7mixin link(external, hideExternalIcon, scroll)
8 if (external)
9 a(href!=attributes.href, class!=attributes.class, title=attributes.title, target="_blank", rel="noopener")
10 if (!hideExternalIcon)
11 i.icon-new_tab
12 |
13 block
14 else
15 a(href!=attributes.href, class!=attributes.class, title!=attributes.title, data-scroll=scroll)
16 block
17
18
19mixin icon-link(name, title, href)
20 +link(true, true)(href=href class=`link link-${name}`, title=title)
21 i.icon-2x(class=`icon-${name}`)