|
@@ -1,10 +1,18 @@
|
|
|
-<!DOCTYPE html>
|
|
|
-<html>
|
|
|
-<head>
|
|
|
- <title>Redirection Intercepted</title>
|
|
|
-</head>
|
|
|
-<body>
|
|
|
- <h1>This Request redirects to<br /><a href="{{ location }}">{{ location }}</a>.</h1>
|
|
|
- <h4>The redirect was intercepted by the web debug toolbar to help debugging.<br/>For more information, see the "intercept-redirects" option of the Profiler.</h4>
|
|
|
-</body>
|
|
|
-</html>
|
|
|
+{% extends 'FrameworkBundle::layout.html.twig' %}
|
|
|
+
|
|
|
+{% block title 'Redirection Intercepted' %}
|
|
|
+
|
|
|
+{% block body %}
|
|
|
+ <div class="sf-exceptionreset">
|
|
|
+ <div class="block_exception">
|
|
|
+ <h1>This request redirects to <a href="{{ location }}">{{ location }}</a>.</h1>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ <small>
|
|
|
+ The redirect was intercepted by the web debug toolbar to help debugging.
|
|
|
+ For more information, see the "intercept-redirects" option of the Profiler.
|
|
|
+ </small>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+{% endblock %}
|