30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>{{.Photo.Caption}}</title>
|
||
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400;0,600;0,700;1,400&family=Manjari:wght@100;400;700&display=swap">
|
||
|
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
|
<link rel="alternate" type="application/atom+xml" href="/feed.xml" title="Photo Feed">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="photo-page">
|
||
|
|
<a href="/" class="back-btn">← Back</a>
|
||
|
|
<div class="dlayout">
|
||
|
|
<div class="dimg-wrap">
|
||
|
|
<img src="/{{.Photo.File}}" alt="{{.Photo.Caption}}">
|
||
|
|
</div>
|
||
|
|
<div class="dsidebar">
|
||
|
|
<div class="dauthor">
|
||
|
|
<div class="mini-avatar"><span>A</span></div>
|
||
|
|
<span class="dauthor-name">Ashik</span>
|
||
|
|
</div>
|
||
|
|
<p class="dcaption">{{.Photo.Caption}}</p>
|
||
|
|
<p class="ddate">{{.Photo.Date.Format "Jan 02, 2006"}}</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|