Index: templates/raw.tmpl |
=================================================================== |
--- a/templates/raw.tmpl |
+++ b/templates/raw.tmpl |
@@ -10,9 +10,23 @@ |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# GNU General Public License for more details. |
# |
# You should have received a copy of the GNU General Public License |
# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
#} |
-{{body|safe}} |
+<!DOCTYPE html> |
+<html <? include html-attributes ?>> |
+ |
+ <head> |
+ {% block head %} |
+ {{ head | safe }} |
+ {% endblock %} |
+ </head> |
+ |
+ <body> |
+ {% block body %} |
+ {{ body | safe }} |
+ {% endblock %} |
+ </body> |
+</html> |