Files
re-terminal/layouts/partials/extended_footer.html
2025-10-28 16:14:29 +08:00

24 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
To add an extended footer section, please create
`layouts/partials/extended_footer.html` in your Hugo directory.
-->
<div style="text-align:center;margin-top:10px;color:#939393;font-size:12px;">
{{ with site.Params.beian }}
{{/* 仅在存在 ICP 时显示 ICP 链接 */}}
{{ if .icp }}
<a href="{{ .icpLink }}" target="_blank" rel="noopener noreferrer nofollow" style="color:#939393;text-decoration:none;">
{{ .icp }}
</a>
{{ end }}
{{/* 仅当 police公安备案文案存在时才显示分隔符与公安备案链接 */}}
{{ if .police }}
{{ if .icp }}<span style="margin:0 8px;">|</span>{{ end }}
<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode={{ .policeCode }}" target="_blank" rel="noopener noreferrer nofollow" style="color:#939393;text-decoration:none;">
{{ if .policeIcon }}<img src="{{ .policeIcon }}" alt="公安备案图标" style="display:inline-block;margin-right:3px;vertical-align:middle;height:14px;">{{ end }}
{{ .police }}
</a>
{{ end }}
{{ end }}
</div>