17 lines
415 B
Cheetah
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>
|