Files
tplate/templates/index.tmpl
2025-09-19 22:05:08 +08:00

17 lines
415 B
Cheetah

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>trpic</title>
{{ .Styles }}
</head>
<body>
<div class="gallery">
{{range .ImageURL}}
<img src="{{.}}" loading="lazy" decoding="async"/>
{{end}}
</div>
</body>
</html>