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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php /** * Layout template file for Whoops's pretty error output. */ ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title><?php echo $tpl->escape($page_title) ?></title>
<style><?php echo $stylesheet ?></style> </head> <body>
<div class="Whoops container"> <div class="stack-container"> <div class="left-panel cf <?php echo (!$has_frames ? 'empty' : '') ?>"> <header> <?php $tpl->render($header) ?> </header>
<div class="frames-description"> Stack frames (<?php echo count($frames) ?>): </div>
<div class="frames-container"> <?php $tpl->render($frame_list) ?> </div> </div> <div class="details-container cf"> <?php $tpl->render($frame_code) ?> <?php $tpl->render($env_details) ?> </div> </div> </div>
<script><?php echo $zepto ?></script> <script><?php echo $clipboard ?></script> <script><?php echo $javascript ?></script> </body> </html>
|