all repos — grimoire @ cf3715068c81e9a3a8b6ebd4a6a3dc298f819011

dead simple icecast frontend

templates/err.html (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ $params := (.Context).Value "params" }}

<!DOCTYPE html>
<html lang='en'>
  <head>
    <meta charset='utf-8'>
    <meta name='description' content='oops'/>
    <meta name='viewport' content='width=device-width,initial-scale=1'>
    <link rel='stylesheet' type='text/css' href='/static/style.css'>
    <title>Grimoire &mdash; Error</title>
  </head>
  <body>
  <header><h1>Error</h1></header>
  <span class="error">{{$params.ErrorCode}}: {{$params.ErrorMessage}}</span>
  </body>
  </head>
</html>