rimgo/views/frontpage.hbs

65 lines
1.7 KiB
Handlebars
Raw Normal View History

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 }}
2022-03-22 20:56:27 +00:00
2022-01-18 00:07:07 +00:00
<link rel="stylesheet" href="/static/css/frontpage.css" />
</head>
<body>
{{> partials/header }}
<main>
2022-07-22 15:48:28 +00:00
<p>An alternative frontend for Imgur. Originally based on <a href="https://codeberg.org/3np/rimgu">rimgu</a>.</p>
2022-01-18 00:07:07 +00:00
<h3>Try it!</h3>
2022-01-18 21:45:57 +00:00
<ul>
<li><a href="/a/H8M4rcp">Album</a></li>
<li><a href="/gallery/gYiQLWy">Gallery</a></li>
<li><a href="/gallery/cTRwaJU">Video</a></li>
</ul>
2022-01-18 00:07:07 +00:00
<h2>Features</h2>
<ul>
2022-07-22 15:48:28 +00:00
<li>Lightweight</li>
<li>No JavaScript</li>
<li>No ads or tracking</li>
<li>No sign up or app install prompts</li>
<li>Bandwidth efficient - automatically uses newer image formats (if enabled)</li>
2022-01-18 00:07:07 +00:00
</ul>
<h2>Usage</h2>
2022-03-22 20:56:27 +00:00
<p>Just replace imgur.com or i.imgur.com with <code>{{domain}}</code>! You can setup automatic redirects using <a
href="https://github.com/libredirect/libredirect">LibRedirect</a> (recommended) or <a href="https://github.com/einaregilsson/Redirector">Redirector</a>.</p>
2022-06-05 00:56:04 +00:00
<br>
{{#if force_webp}}
<p>To download images as their original filetype, add <code>?no_webp=1</code> to the end of the image URL.</p>
{{/if}}
2022-03-22 20:56:27 +00:00
<br>
<details>
<summary>
Redirector configuration
</summary>
<ul>
<li>Description: Imgur -> rimgo</li>
<li>Example URL: https://imgur.com/a/H8M4rcp</li>
<li>Include pattern: <code>^https?://i?.?imgur.com(/.*)?$</code></li>
2022-06-07 12:21:32 +00:00
<li>Redirect to: <code>{{proto}}://{{domain}}$1</code></li>
2022-03-22 20:56:27 +00:00
<li>Pattern type: Regular Expression</li>
</ul>
</details>
2022-01-18 00:07:07 +00:00
</main>
{{> partials/footer }}
</body>
2022-06-07 12:21:32 +00:00
</html>