1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset={{ _charset }}"/>
- <title>{{ exception.message }} ({{ status_code }} {{ status_text }})</title>
- <link href="{{ asset('/bundles/framework/css/exception_layout.css') }}" rel="stylesheet" type="text/css" media="all" />
- <link href="{{ asset('/bundles/framework/css/exception.css') }}" rel="stylesheet" type="text/css" media="all" />
- <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';
- }
- function switchIcons(id1, id2) {
- icon1 = document.getElementById(id1);
- icon2 = document.getElementById(id2);
- visibility1 = icon1.style.visibility;
- visibility2 = icon2.style.visibility;
- icon1.style.visibility = visibility2;
- icon2.style.visibility = visibility1;
- }
- //]]>
- </script>
- </head>
- <body>
- <div id="content">
- <div class="header clear_fix">
- <div class="header_logo">
- <a href="http://symfony.com/">
- <img src="{{ asset('bundles/framework/images/logo_symfony.gif') }}" alt="Symfony" />
- </a>
- </div>
- <div class="search">
- <form method="post" action="http://symfony.com/search">
- <div class="form_row">
- <label for="search_id">
- <img src="{{ asset('bundles/framework/images/grey_magnifier.png') }}" alt="Search on Symfony website" />
- </label>
- <input name="search_name" id="search_id" type="text" placeholder="Search on Symfony website" />
- <button type="submit">
- <span class="border_l">
- <span class="border_r">
- <span class="btn_bg">OK</span>
- </span>
- </span>
- </button>
- </div>
- </form>
- </div>
- </div>
- {% block body '' %}
- </div>
- </body>
- </html>
|