2022-01-18 00:07:07 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2022-01-18 23:31:15 +00:00
|
|
|
<title>rimgo</title>
|
2022-03-22 20:56:27 +00:00
|
|
|
|
2022-01-18 00:07:07 +00:00
|
|
|
{{> partials/head }}
|
|
|
|
</head>
|
|
|
|
|
2023-06-10 16:04:29 +00:00
|
|
|
<body class="font-sans text-lg bg-slate-800 text-white">
|
|
|
|
{{> partials/nav }}
|
|
|
|
|
|
|
|
<header class="my-8 p-8 rounded-xl flex flex-col gap-4 items-center justify-center bg-gradient-to-r from-blue-400 to-emerald-400">
|
|
|
|
<h2 class="font-bold text-white text-2xl">The fast, private image viewer for Imgur.</h2>
|
2023-08-10 15:02:51 +00:00
|
|
|
{{> partials/searchBar }}
|
2023-06-10 16:04:29 +00:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<main class="my-8">
|
|
|
|
<h2 class="font-bold text-2xl">What is rimgo?</h2>
|
|
|
|
<p>
|
|
|
|
rimgo is an alternative frontend for Imgur.
|
|
|
|
Originally based on <a href="https://codeberg.org/3np/rimgu" rel="noreferrer">rimgu</a>.
|
|
|
|
It's a way to access Imgur without the ads, tracking, and other garbage.
|
|
|
|
rimgo is not affiliated with Imgur, all content is proxied from Imgur.
|
|
|
|
</p>
|
|
|
|
<br/>
|
|
|
|
<h3 class="font-bold text-xl">Notice</h3>
|
2022-10-08 20:25:33 +00:00
|
|
|
<p>All images and media are from Imgur. rimgo does not allow uploads or comments. Any issues with content should be reported to Imgur.</p>
|
2022-01-18 00:07:07 +00:00
|
|
|
</main>
|
2023-06-10 16:04:29 +00:00
|
|
|
|
|
|
|
<h2 class="font-bold text-2xl">This instance</h2>
|
|
|
|
<section class="my-4 lg:m-4 flex flex-col lg:flex-row gap-4 items-center">
|
|
|
|
{{> partials/privacy }}
|
|
|
|
<div class="self-start">
|
|
|
|
<h2 class="text-xl my-2 font-bold">Additional information</h2>
|
|
|
|
<ul>
|
|
|
|
<li>Version: {{version}}</li>
|
|
|
|
<li>Country: {{config.Privacy.country}}</li>
|
|
|
|
<li>Provider: {{config.Privacy.provider}}</li>
|
|
|
|
{{#if config.Privacy.cloudflare}}
|
|
|
|
<li>Using Cloudflare?: Yes</li>
|
|
|
|
{{else}}
|
|
|
|
<li>Using Cloudflare?: No</li>
|
|
|
|
{{/if}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<p><a href="/privacy">Learn more about instance privacy ></a></p>
|
|
|
|
|
2022-01-18 00:07:07 +00:00
|
|
|
{{> partials/footer }}
|
|
|
|
</body>
|
|
|
|
|
2023-06-10 16:04:29 +00:00
|
|
|
</html>
|