forked from HttpErrorPages/HttpErrorPages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.phtml
More file actions
27 lines (22 loc) · 795 Bytes
/
template.phtml
File metadata and controls
27 lines (22 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Simple HttpErrorPages | MIT X11 License | https://github.com/AndiDittrich/HttpErrorPages -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>We've got some trouble | <?php echo $v_code; ?> - <?php echo $v_title; ?></title>
<style type="text/css"><?php echo $css; ?></style>
</head>
<body>
<div class="cover">
<h1><?php echo $v_title; ?> <small>Error <?php echo $v_code; ?></small></h1>
<p class="lead"><?php echo $v_message; ?></p>
</div>
<?php if (!empty($v_footer)){ ?>
<footer>
<p><?php echo $v_footer; ?></p>
</footer>
<?php } ?>
</body>
</html>