mirror of
https://ghfast.top/https://github.com/zsjy/halo-theme-dream2.0-plus.git
synced 2025-03-16 04:19:41 +08:00
34 lines
1.9 KiB
HTML
34 lines
1.9 KiB
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html lang="zh" xmlns:th="https://www.thymeleaf.org"
|
||
|
th:class="${theme.config.basic_style.theme_style}"
|
||
|
th:with="urlCode = ${param.target},
|
||
|
url = ${#uris.unescapePath(urlCode)}">
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<title th:text="${singlePage.spec.title + ' - ' + site.title + (#strings.isEmpty(site.subtitle) ? '' : '|' + site.subtitle)}"></title>
|
||
|
<link rel="preload stylesheet" as="style" th:href="@{/assets/css/theme.min.css(mew=${theme.spec.version})}">
|
||
|
<link data-pjax rel="preload stylesheet" as="style" th:href="@{/assets/css/security-link.min.css(mew=${theme.spec.version})}"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||
|
<th:block th:replace="~{common/config}"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="content">
|
||
|
<div class="content-title">
|
||
|
<img th:src="${#strings.isEmpty(theme.config.security_link_config.security_link_site_img) ? site.favicon : theme.config.security_link_config.security_link_site_img}" alt="favicon">
|
||
|
<span th:title="${site.title}">[[${site.title}]]</span>
|
||
|
</div>
|
||
|
<div class="others">
|
||
|
<div class="others-tip">
|
||
|
<img th:src="${#strings.isEmpty(theme.config.security_link_config.security_link_tip_img) ? #theme.assets('/img/warning.webp') : theme.config.security_link_config.security_link_tip_img}" alt="">
|
||
|
<span>[[${#strings.isEmpty(theme.config.security_link_config.security_link_tip_desc) ? '请注意您的账号和财产安全!': theme.config.security_link_config.security_link_tip_desc}]]</span>
|
||
|
</div>
|
||
|
<div class="others-topic">
|
||
|
<span>您即将离开</span><span class="site-title">[[${site.title}]]</span><span>,去往:</span><a class="loading-color2">[[${url}]]</a>
|
||
|
</div>
|
||
|
<div class="others-end">
|
||
|
<a th:href="${url}" target="_self">继续</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|