83 lines
2.2 KiB
HTML
83 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Воспоминание</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
background: #f5f5f5;
|
|
color: #333;
|
|
padding: 2rem 1rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.container {
|
|
max-width: 640px;
|
|
width: 100%;
|
|
}
|
|
.header {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.date {
|
|
font-size: 1.1rem;
|
|
color: #666;
|
|
}
|
|
.ago {
|
|
font-size: 0.9rem;
|
|
color: #999;
|
|
margin-top: 0.25rem;
|
|
}
|
|
.card {
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
padding: 1.5rem;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
|
}
|
|
.content {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
}
|
|
.tags {
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
.tag {
|
|
background: #e8f0fe;
|
|
color: #1a73e8;
|
|
padding: 0.2rem 0.6rem;
|
|
border-radius: 4px;
|
|
font-size: 0.85rem;
|
|
}
|
|
.meta {
|
|
margin-top: 1rem;
|
|
font-size: 0.8rem;
|
|
color: #aaa;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<div class="date">{{.DateFormatted}}</div>
|
|
{{if .AgoText}}<div class="ago">{{.AgoText}}</div>{{end}}
|
|
</div>
|
|
<div class="card">
|
|
<div class="content">{{.Content}}</div>
|
|
{{if .Tags}}
|
|
<div class="tags">
|
|
{{range .Tags}}<span class="tag">#{{.}}</span>{{end}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
<div class="meta">Tier {{.Tier}} · показов: {{.ShowCount}}</div>
|
|
</div>
|
|
</body>
|
|
</html>
|