mirror of https://gitlab.com/curben/blog
Class name should be lowercase for fontawesome
Easier to toggle fontawesome feature
bd4a14dfa3
This commit is contained in:
parent
1d4e14de25
commit
b5529674c0
|
@ -13,7 +13,7 @@
|
||||||
<% for (var key in theme.links.solid) { %>
|
<% for (var key in theme.links.solid) { %>
|
||||||
<li>
|
<li>
|
||||||
<% if (theme.icons){ %>
|
<% if (theme.icons){ %>
|
||||||
<a href="<%= theme.links.solid[key] %>"><span class="fas fa-<%= key %>"></span></a>
|
<a href="<%= theme.links.solid[key] %>"><span class="fas fa-<%= key.toLowerCase() %>"></span></a>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<a href="<%= theme.links.solid[key] %>"><%= key %></a>
|
<a href="<%= theme.links.solid[key] %>"><%= key %></a>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
<% for (var key in theme.links.brands) { %>
|
<% for (var key in theme.links.brands) { %>
|
||||||
<li>
|
<li>
|
||||||
<% if (theme.icons){ %>
|
<% if (theme.icons){ %>
|
||||||
<a href="<%= theme.links.brands[key] %>"><span class="fab fa-<%= key %>"></span></a>
|
<a href="<%= theme.links.brands[key] %>"><span class="fab fa-<%= key.toLowerCase() %>"></span></a>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<a href="<%= theme.links.brands[key] %>"><%= key %></a>
|
<a href="<%= theme.links.brands[key] %>"><%= key %></a>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
Loading…
Reference in New Issue