86 lines
3.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html data-theme="{{ .theme }}">
<head>
<title>AnonymousOverflow - Private frontend for StackOverflow</title>
<link rel="stylesheet" href="/static/globals.css" />
<link rel="stylesheet" href="/static/home.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2022-12-27 23:44:17 -05:00
<meta
http-equiv="Content-Security-Policy"
2022-12-28 00:34:15 -05:00
content="default-src 'none'; style-src 'self'; script-src 'none'; img-src 'self';"
2022-12-27 23:44:17 -05:00
/>
2022-12-28 00:34:15 -05:00
<link rel="icon" href="/static/codecircles.png" />
2022-12-28 00:58:41 -05:00
<meta name="theme-color" content="#8CFFC1" />
<meta name="og:image" content="/static/codecircles.png" />
2022-12-28 11:33:26 -05:00
<meta
name="description"
content="View StackOverflow threads in privacy and without the clutter."
/>
</head>
<body>
<div class="container">
2022-12-28 00:34:15 -05:00
<div class="title">
2022-12-28 11:33:26 -05:00
<img
class="logo"
src="/static/codecircles.png"
alt="4 circles with alternating colors between green and white"
/>
2022-12-28 00:34:15 -05:00
<h1>AnonymousOverflow</h1>
</div>
<h2>Get programming help without compromising your privacy.</h2>
<p>
AnonymousOverflow allows you to view StackOverflow threads
without the cluttered interface and exposing your IP address,
browsing habits and other browser fingerprint data to
StackOverflow.
</p>
2022-12-27 23:42:54 -05:00
{{ if .errorMessage }}
2022-12-27 23:44:17 -05:00
<div class="error">
<p><b>Error</b>: {{ .errorMessage }}</p>
</div>
2022-12-27 23:42:54 -05:00
{{ end }}
<form method="POST">
<div class="view-form">
2022-12-27 23:42:54 -05:00
<input
class="view-input"
type="text"
name="url"
placeholder="https://stackoverflow.com/questions/123456/example-url"
/>
<button class="view-button" type="submit">View</button>
</div>
</form>
2022-12-28 00:08:06 -05:00
<div class="options">
<div class="icon">
<a href="/options/images">
<img src="/static/icons/image.svg" alt="Toggle theme" />
</a>
</div>
<div class="icon">
<a href="/options/theme?redirect_url={{ .currentUrl }}">
<img src="/static/icons/{{ if eq .theme "dark" }}sun{{
else }}moon{{ end }}.svg" alt="Toggle theme" />
</a>
</div>
2022-12-28 00:08:06 -05:00
</div>
<p class="footer">
Brought to you by
<a
2022-12-28 00:56:03 -05:00
href="https://github.com/WhateverLabs"
target="_blank"
rel="noopener noreferrer"
>Whatever Labs</a
>
<a
href="https://github.com/httpjamesm/AnonymousOverflow"
target="_blank"
rel="noopener noreferrer"
>Source</a
>
2022-12-28 11:33:26 -05:00
• Version {{ .version }}
</p>
</div>
</body>
</html>