[default theme] fix links causing disseminate to drop an exception
This commit is contained in:
parent
27072a80b7
commit
3c867e6c5a
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
<h1><%= config.branding.title %></h1>
|
<h1><%= config.branding.title %></h1>
|
||||||
<hr>
|
<hr>
|
||||||
<div id="link-container">
|
<div id="link-container">
|
||||||
<% if(config.themeOpts.links) { %>
|
<% if(config.hasOwnProperty("themeOpts") && config.themeOpts.hasOwnProperty("links")) { %>
|
||||||
<% for(const link of config.themeOpts.links) { %>
|
<% for(const link of config.themeOpts.links) { %>
|
||||||
<a href="<%= link.url %>"><%= link.title %></a>
|
<a href="<%= link.url %>"><%= link.title %></a>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
Loading…
Reference in a new issue