forked from mirrors/keywind
fix: update favicon
This commit is contained in:
parent
439cdabc8f
commit
8d2160b5ca
1 changed files with 6 additions and 6 deletions
|
@ -1,25 +1,25 @@
|
|||
<#macro kw script="">
|
||||
<title>${msg("loginTitle", (realm.displayName!""))}</title>
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="robots" content="noindex, nofollow" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<#if properties.meta?has_content>
|
||||
<#list properties.meta?split(" ") as meta>
|
||||
<meta name="${meta?split('==')[0]}" content="${meta?split('==')[1]}"/>
|
||||
<meta name="${meta?split('==')[0]}" content="${meta?split('==')[1]}">
|
||||
</#list>
|
||||
</#if>
|
||||
|
||||
<#if properties.favicons?has_content>
|
||||
<#list properties.favicons?split(" ") as favicon>
|
||||
<link href="${url.resourcesPath}/${favicon?split('==')[0]}" rel="${meta?split('==')[1]}">
|
||||
<link href="${url.resourcesPath}/${favicon?split('==')[0]}" rel="${favicon?split('==')[1]}">
|
||||
</#list>
|
||||
</#if>
|
||||
|
||||
<#if properties.styles?has_content>
|
||||
<#list properties.styles?split(" ") as style>
|
||||
<link href="${url.resourcesPath}/${style}" rel="stylesheet" />
|
||||
<link href="${url.resourcesPath}/${style}" rel="stylesheet">
|
||||
</#list>
|
||||
</#if>
|
||||
|
||||
|
|
Loading…
Reference in a new issue