15 lines
268 B
Plaintext
15 lines
268 B
Plaintext
|
<%
|
||
|
function layoutDiv() {
|
||
|
var el = ''
|
||
|
el += `<a class="link" title="${item.title}" href="${item.url}">`
|
||
|
if (item.icon) {
|
||
|
el += icon(item.icon)
|
||
|
}
|
||
|
if (showText) {
|
||
|
el += `<span>${item.title}</span>`
|
||
|
}
|
||
|
el += `</a>`
|
||
|
return el
|
||
|
}
|
||
|
%>
|
||
|
<%- layoutDiv() %>
|