10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
<!-- Friends Blog -->
|
|
<% if(config.friends) { %>
|
|
<h5>FRIENDS</h5>
|
|
<ul class="list-inline">
|
|
|
|
<% config.friends.forEach(function(friend){ %>
|
|
<li><a href="<%= friend.href %>" target="_blank"><%= friend.title %></a></li>
|
|
<% }); %>
|
|
</ul>
|
|
<% }%> |