32 lines
1018 B
Plaintext
32 lines
1018 B
Plaintext
<#macro kw>
|
|
<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" />
|
|
|
|
<#if properties.meta?has_content>
|
|
<#list properties.meta?split(" ") as meta>
|
|
<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]}">
|
|
</#list>
|
|
</#if>
|
|
|
|
<#if properties.styles?has_content>
|
|
<#list properties.styles?split(" ") as style>
|
|
<link href="${url.resourcesPath}/${style}" rel="stylesheet" />
|
|
</#list>
|
|
</#if>
|
|
|
|
<#if properties.scripts?has_content>
|
|
<#list properties.scripts?split(" ") as script>
|
|
<script defer src="${url.resourcesPath}/${script}" type="text/javascript"></script>
|
|
</#list>
|
|
</#if>
|
|
</#macro>
|