|
@@ -1,28 +1,26 @@
|
|
|
{% extends 'WebProfilerBundle:Profiler:base.html.twig' %}
|
|
|
|
|
|
{% block body %}
|
|
|
- <div class="header">
|
|
|
- <h1>
|
|
|
- <img alt="" src="{{ asset('bundles/webprofiler/images/profiler.png') }}" />
|
|
|
- Symfony Profiler
|
|
|
- </h1>
|
|
|
- <div>
|
|
|
- Token "{{ token }}" does not exist.
|
|
|
+ <div id="content">
|
|
|
+ {% include 'WebProfilerBundle:Profiler:header.html.twig' only %}
|
|
|
+
|
|
|
+ <div class="resume">
|
|
|
+ <p>
|
|
|
+ <strong>Token "{{ token }}" does not exist.</strong>
|
|
|
+ </p>
|
|
|
</div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <table>
|
|
|
- <tr>
|
|
|
- <td class="menu">
|
|
|
- {% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
|
|
|
|
|
|
- {% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
|
|
|
- </td>
|
|
|
- <td class="main">
|
|
|
- <div class="content">
|
|
|
- <h2>Token "{{ token }}" does not exist.</h2>
|
|
|
+ <div class="main">
|
|
|
+ <div class="clear_fix">
|
|
|
+ <div class="navigation">
|
|
|
+ {% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
|
|
|
+ {% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
|
|
|
+ </div>
|
|
|
+ <div class="collector_content">
|
|
|
+ {% block panel '' %}
|
|
|
</div>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
{% endblock %}
|