123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $view->getCharset() ?>"/>
- <title><?php echo htmlspecialchars($exception->getMessage(), ENT_QUOTES, $view->getCharset()) ?> (<?php echo $exception->getStatusCode() ?> <?php echo $exception->getStatusText() ?>)</title>
- <style type="text/css">
- html { background: #eee }
- body { font: 11px Verdana, Arial, sans-serif; color: #333 }
- .sf-exceptionreset, .sf-exceptionreset .block, .sf-exceptionreset #message { margin: auto }
- <?php echo $view->render('FrameworkBundle:Exception:styles') ?>
- </style>
- <script type="text/javascript">
- //<![CDATA[
- function toggle(id, clazz) {
- el = document.getElementById(id);
- current = el.style.display
- if (clazz) {
- var tags = document.getElementsByTagName('*');
- for (i = 0; i < tags.length; i++) {
- if (tags[i].className == clazz) {
- tags[i].style.display = 'none';
- }
- }
- }
- el.style.display = current == 'none' ? 'block' : 'none';
- }
- //]]>
- </script>
- </head>
- <body>
- <?php echo $view->get('slots')->get('_content') ?>
- </body>
- </html>
|