gtranslate/templates/error.html

31 lines
987 B
HTML

{{define "error"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error</title>
<meta name="description" content="Better interface for Google Translate that is lightweight and doesn't track you">
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<h1 class="title">Ooops :(</h1>
<section class="main-section">
<p>Unfortunately, an error occured while processing the translation:<p>
<pre>{{.Error}}</pre>
<p>
You can report this issue to the official mailing list:
<a href="mailto:~yerinalexey/public-inbox@lists.sr.ht">~yerinalexey/public-inbox@lists.sr.ht</a>
<a href="https://lists.sr.ht/~yerinalexey/public-inbox">[archives]</a>.
Please include the text you've submitted and the instance you
were using.
</p>
<a href="/">Go back</a>
</section>
</body>
</html>
{{end}}