2022-12-22 17:59:12 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<link rel="stylesheet" href="/public/static/app.css">
|
|
|
|
|
<title>{{.title}}</title>
|
|
|
|
|
<meta name="description" content="{{.description}}">
|
|
|
|
|
</head>
|
2026-02-11 13:55:46 +08:00
|
|
|
<body class="liquid-glass-container">
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<!-- Liquid Glass Card -->
|
|
|
|
|
<div class="liquid-glass" style="position: relative; overflow: hidden;">
|
|
|
|
|
<!-- Edge Highlight Effect -->
|
|
|
|
|
<div class="liquid-glass-highlight"></div>
|
|
|
|
|
|
|
|
|
|
<article id="article">
|
|
|
|
|
<h1 class="title">{{.title}}</h1>
|
|
|
|
|
<div class="info">
|
|
|
|
|
<span class="line">发布于:<span class="liquid-glass-pill">{{.time}}</span></span>
|
|
|
|
|
</div>
|
|
|
|
|
<blockquote>
|
|
|
|
|
{{.description | unescape}}
|
|
|
|
|
</blockquote>
|
|
|
|
|
<div class="content-body">
|
2022-12-22 17:59:12 +08:00
|
|
|
{{.content | unescape}}
|
2026-02-11 13:55:46 +08:00
|
|
|
</div>
|
|
|
|
|
</article>
|
2022-12-22 17:59:12 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
2026-02-11 13:55:46 +08:00
|
|
|
</html>
|