mirror of
https://github.com/Jerryplusy/crystelf-plugin.git
synced 2025-07-04 14:19:19 +00:00
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
body {
|
|
font-family: "Helvetica Neue", sans-serif;
|
|
margin: 30px;
|
|
background: #f5f7fa;
|
|
color: #333;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
max-width: 760px;
|
|
margin: auto;
|
|
}
|
|
h1 { margin: 0 0 10px; }
|
|
.meta { color: #666; font-size: 14px; margin-bottom: 15px; }
|
|
.content { font-size: 16px; line-height: 1.6; }
|
|
.footer { margin-top: 20px; font-size: 13px; color: #999; }
|
|
img { max-width: 100%; border-radius: 4px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>{{title}}</h1>
|
|
<div class="meta">作者:{{author}} | 时间:{{date}}</div>
|
|
<div class="content">{{content}}</div>
|
|
<div class="footer">
|
|
来自 <a href="{{link}}" target="_blank">{{feedTitle}}</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|