Add embed to error page & use variables

This commit is contained in:
BBaoVanC 2021-09-18 21:25:26 -05:00
parent 8e4eedc8b3
commit aaef37882b
1 changed files with 18 additions and 3 deletions

View File

@ -1,11 +1,26 @@
{{ $code := placeholder "http.error.status_code" }}
{{ $text := placeholder "http.error.status_text" }}
<html>
<head>
<title>{{placeholder "http.error.status_code"}} {{placeholder "http.error.status_text"}}</title>
<title>{{ $code }} {{ $text }}</title>
<meta name="title" content="{{ $code }} {{ $text }}" />
<meta name="description" content="{{ $code }} {{ $text }}" />
<meta property="og:title" content="{{ $code }} {{ $text }}" />
<meta property="og:description" content="{{ $code }} {{ $text }}" />
<meta property="og:image" content="https://boba.best/img/boba_mochi.gif"/>
<meta property="og:site_name" content="boba.best" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:image" content="https://boba.best/img/boba_mochi.gif"/>
<meta name="twitter:title" content="{{ $code }} {{ $text }}" />
<meta name="twitter:description" content="{{ $code }} {{ $text }}" />
</head>
<body bgcolor="black" text="white">
<center>
<h1>{{placeholder "http.error.status_code"}} {{placeholder "http.error.status_text"}}</h1>
<img src='https://errors.boba.best/{{placeholder "http.error.status_code"}}.jpg' alt="cat" />
<h1>{{ $code }} {{ $text }}</h1>
<img src='https://errors.boba.best/{{ $code }}.jpg' alt="cat" />
</center>
</body>
</html>