|
|
- <!doctype html>
- <html lang="{{ lang }}">
- <head>
- <title>{{ "error_title"|tr(lang) }}</title>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="{{ "meta_description"|tr(lang) }}" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="icon" type="image/png" sizes="48x48" href="/assets/favicon.ico" />
- <link rel="stylesheet" href="/assets/index.css?v=1.0" />
- <link rel="stylesheet" href="/assets/cloud.css?v=1.0" />
- <body>
- <div class="flex page-heading error fullheight">
- <div class="flex page-heading-text">
- <div>
- <h1 class="title">{{ "error_title"|tr(lang) }}</h1>
- <h2 class="title">{{ "error_description"|tr(lang) }}</h2>
- <h3 class="title">{{ error_msg|tr(lang) }}</h3>
- <p class="title">{{ "error_note1"|tr(lang) }}</h3>
- <p class="title">{{ "error_note2"|tr(lang) }}</h3>
- </div>
- </div>
- <div class="flex">
- <a class="ncstyle-button error c-button" href="/">{{ "error_back"|tr(lang) }}</a>
- </div>
- </div>
- </body>
- </html>
-
|