We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b0efe commit 5eb248dCopy full SHA for 5eb248d
layout/_partial/head.ejs
@@ -26,7 +26,7 @@
26
<%- feed_tag(theme.rss) %>
27
<% } %>
28
<% if (theme.favicon){ %>
29
- <link rel="icon" href="<%- theme.favicon %>">
+ <%- favicon_tag(theme.favicon) %>
30
31
<%- css('css/typing') %>
32
<%- css('css/donate') %>
layout/index.ejs
@@ -13,9 +13,9 @@
13
<% for (var key in theme.links) { %>
14
<li>
15
<% if (theme.icons){ %>
16
- <a href="<%= theme.links[key] %>"><span class="fa fa-<%= key %>"></span></a>
+ <a href="<%- url_for(theme.links[key]) %>"><span class="fa fa-<%= key %>"></span></a>
17
<% } else { %>
18
- <a href="<%= theme.links[key] %>"><%= key %></a>
+ <a href="<%- url_for(theme.links[key]) %>"><%= key %></a>
19
20
</li>
21
0 commit comments