2026-07-02 00:53:17 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
<title>Photo Gallery</title>
|
2026-07-02 02:30:35 +02:00
|
|
|
|
<link rel="stylesheet" href="{{.FontsURL}}">
|
2026-07-02 00:53:17 +02:00
|
|
|
|
<link rel="stylesheet" href="/static/style.css">
|
2026-07-02 02:30:35 +02:00
|
|
|
|
<style>:root { --serif: '{{.SerifFamily}}', Georgia, serif; --mj: '{{.MlFamily}}', sans-serif; }</style>
|
2026-07-02 00:53:17 +02:00
|
|
|
|
<link rel="alternate" type="application/atom+xml" href="/feed.xml" title="Photo Feed">
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<header class="profile-hdr">
|
|
|
|
|
|
<div class="profile-inner">
|
|
|
|
|
|
<div class="avatar-ring">
|
2026-07-02 02:30:35 +02:00
|
|
|
|
<span class="avatar-initials">{{.Initial}}</span>
|
2026-07-02 00:53:17 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="pinfo">
|
2026-07-02 02:30:35 +02:00
|
|
|
|
<h1>{{.Author}}</h1>
|
|
|
|
|
|
<p class="handle">{{.Handle}}</p>
|
2026-07-02 00:53:17 +02:00
|
|
|
|
<p class="pcount"><strong>{{len .Photos}}</strong> posts</p>
|
2026-07-02 02:30:35 +02:00
|
|
|
|
<p class="pbio">{{.Bio}}{{if .BioAlt}}<br><span class="ml">{{.BioAlt}}</span>{{end}}</p>
|
2026-07-02 00:53:17 +02:00
|
|
|
|
<a href="/feed.xml" class="rss-a">
|
|
|
|
|
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="currentColor" aria-hidden="true">
|
|
|
|
|
|
<circle cx="2.5" cy="11.5" r="1.5"/>
|
|
|
|
|
|
<path d="M1.5 7.5A5 5 0 0 1 6.5 12.5H8A6.5 6.5 0 0 0 1.5 6V7.5z"/>
|
|
|
|
|
|
<path d="M1.5 4A8.5 8.5 0 0 1 10 12.5h1.5A10 10 0 0 0 1.5 2.5V4z"/>
|
|
|
|
|
|
</svg>
|
|
|
|
|
|
RSS feed
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
|
<div class="grid-wrap">
|
|
|
|
|
|
<div class="pgrid">
|
|
|
|
|
|
{{range .Photos}}
|
|
|
|
|
|
<a href="/photo/{{.Slug}}/" class="ptile">
|
|
|
|
|
|
<img src="/{{.Thumb}}" alt="{{.Caption}}" loading="lazy">
|
|
|
|
|
|
</a>
|
|
|
|
|
|
{{end}}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</main>
|
2026-07-02 02:18:32 +02:00
|
|
|
|
|
|
|
|
|
|
<footer class="site-footer">
|
2026-07-02 02:30:35 +02:00
|
|
|
|
© 2000–{{.Year}} {{.Author}}. All rights reserved.
|
2026-07-02 02:18:32 +02:00
|
|
|
|
</footer>
|
2026-07-02 00:53:17 +02:00
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|