imgin/imgin/web/gallery.html

33 lines
1.3 KiB
HTML
Raw Normal View History

2021-10-03 00:56:33 +00:00
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charself="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2022-01-09 19:52:28 +00:00
<title>{{title + " - imgin" if title else "imgin - minimal & private imgur proxy"}}</title>
2021-10-03 00:56:33 +00:00
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📷</text></svg>">
<link rel="stylesheet" href="/static/theme.css">
</head>
<body>
2022-01-09 19:52:28 +00:00
% if title != '':
<h1>{{title}}</h1>
% end
2021-10-03 00:56:33 +00:00
% for img in imgs:
2022-01-09 20:26:35 +00:00
% if img[1] != '':
<h2>{{img[1]}}</h2>
% end
<p>{{img[2]}}</p>
<a href="{{img[0]}}"><img src="{{img[0]}}" loading="lazy"></a>
2021-10-03 00:56:33 +00:00
% end
<footer>
<small>
2021-10-03 04:06:06 +00:00
Powered by <a href="https://voidnet.tech/">VoidNetwork LLC</a><br>
2021-10-03 00:56:33 +00:00
This website does not claim ownership of any media.
<br>This service simply acts as a proxy to Imgur.com and does not store images aside from a temporary cache.
<br>Abusive images should be reported to imgur. This website does not create new images/comments.
2021-10-03 01:03:57 +00:00
<br>Do not use this service to facilitate scraping or as an image CDN.
2021-10-03 00:56:33 +00:00
</small>
</footer>
</body>
</html>