| Index: templates/raw.tmpl |
| =================================================================== |
| --- a/templates/raw.tmpl |
| +++ b/templates/raw.tmpl |
| @@ -10,9 +10,25 @@ |
| # 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}} |
| +{% import "macros/document" as document %} |
| + |
| +<!DOCTYPE html> |
| +<html {{ document.attributes(locale, config.has_option("rtl", locale)) }}> |
| + |
| + <head> |
| + {% block head %} |
| + {{ head | safe }} |
| + {% endblock %} |
| + </head> |
| + |
| + <body> |
| + {% block body %} |
| + {{ body | safe }} |
| + {% endblock %} |
| + </body> |
| +</html> |