Skip to content
Snippets Groups Projects
  • Rotzbua's avatar
    d2120c42
    gluon-status-page: html: improve accessibility · d2120c42
    Rotzbua authored
    google-lighthouse:
    Warning: Consider avoiding viewport values that prevent users from resizing documents.
    
    Rule ID: meta-viewport
    Accessibility:
    Ruleset: axe-core 4.4
    User Impact: Critical
    Guidelines: WCAG 2.1 Best Practice, WCAG 2.0 Best Practice
    d2120c42
    History
    gluon-status-page: html: improve accessibility
    Rotzbua authored
    google-lighthouse:
    Warning: Consider avoiding viewport values that prevent users from resizing documents.
    
    Rule ID: meta-viewport
    Accessibility:
    Ruleset: axe-core 4.4
    User Impact: Critical
    Guidelines: WCAG 2.1 Best Practice, WCAG 2.0 Best Practice
layout.html 525 B
<%-
	http:prepare_content("text/html")
-%>
<!DOCTYPE html>
<html lang="">
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,initial-scale=1">
		<meta name="robots" content="noindex,nofollow">

		<title><%:Error%></title>

		<link rel="stylesheet" href="/static/status-page.css" type="text/css">
	</head>
	<body>
		<header>
			<h1><%:Error%></h1>
		</header>
		<div class="container">
			<div class="frame">
				<% renderer.render(content, scope, pkg) %>
			</div>
		</div>
	</body>
</html>