feat: 品牌化 — spdis.space 图标、主站链接、DeepSeek 维护说明

This commit is contained in:
2026-06-02 13:17:24 +00:00
parent 4b6401fd4b
commit 877d38710c
5 changed files with 44 additions and 2 deletions

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@@ -4,12 +4,17 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM 论文图书馆</title> <title>LLM 论文图书馆</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/style.css"> <link rel="stylesheet" href="/style.css">
</head> </head>
<body> <body>
<div class="header"> <div class="header">
<h1>🧠 LLM 论文图书馆</h1> <a href="https://spdis.space" class="home-link" title="返回主站 spdis.space">
<img src="/favicon.png" alt="" class="header-icon">
<h1>🧠 LLM 论文图书馆</h1>
</a>
</div> </div>
<div class="search-wrap"> <div class="search-wrap">
@@ -29,6 +34,10 @@
</div> </div>
</div> </div>
<footer class="site-footer">
<span>本站由 <strong>DeepSeek-V4-Pro</strong> 每周五自动更新并维护</span>
</footer>
<script> <script>
/** /**
* LLM 论文图书馆 — 前端 JS * LLM 论文图书馆 — 前端 JS

View File

@@ -4,12 +4,17 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM 论文图书馆</title> <title>LLM 论文图书馆</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/style.css"> <link rel="stylesheet" href="/style.css">
</head> </head>
<body> <body>
<div class="header"> <div class="header">
<h1>🧠 LLM 论文图书馆</h1> <a href="https://spdis.space" class="home-link" title="返回主站 spdis.space">
<img src="/favicon.png" alt="" class="header-icon">
<h1>🧠 LLM 论文图书馆</h1>
</a>
</div> </div>
<div class="search-wrap"> <div class="search-wrap">
@@ -29,6 +34,10 @@
</div> </div>
</div> </div>
<footer class="site-footer">
<span>本站由 <strong>DeepSeek-V4-Pro</strong> 每周五自动更新并维护</span>
</footer>
<script src="/app.js"></script> <script src="/app.js"></script>
</body> </body>
</html> </html>

View File

@@ -27,6 +27,8 @@ body {
} }
.header { text-align: center; margin-bottom: 32px; } .header { text-align: center; margin-bottom: 32px; }
.header .home-link { text-decoration: none; color: inherit; display: inline-flex; align-items: center; gap: 10px; }
.header .header-icon { width: 32px; height: 32px; border-radius: 6px; }
.header h1 { .header h1 {
font-size: 1.5em; font-size: 1.5em;
background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink)); background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
@@ -292,6 +294,17 @@ body {
padding-right: 4px; padding-right: 4px;
border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0;
} }
/* Footer */
.site-footer {
text-align: center;
padding: 24px 16px 8px;
color: var(--text-dim);
font-size: 0.8em;
border-top: 1px solid var(--border);
margin-top: 40px;
}
.site-footer strong { color: var(--cyan); }
.trans-en, .trans-zh { .trans-en, .trans-zh {
font-size: 0.82em; line-height: 1.65; font-size: 0.82em; line-height: 1.65;
} }
@@ -311,3 +324,14 @@ body {
padding-right: 4px; padding-right: 4px;
border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0;
} }
/* Footer */
.site-footer {
text-align: center;
padding: 24px 16px 8px;
color: var(--text-dim);
font-size: 0.8em;
border-top: 1px solid var(--border);
margin-top: 40px;
}
.site-footer strong { color: var(--cyan); }