| Index: templates/minimal.tmpl | 
| =================================================================== | 
| --- a/templates/minimal.tmpl | 
| +++ b/templates/minimal.tmpl | 
| @@ -11,17 +11,34 @@ | 
| # 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/>. | 
| #} | 
| <!DOCTYPE html> | 
| -<html> | 
| +<html <? include html-attributes ?>> | 
| + | 
| <head> | 
| - {{head|safe}} | 
| + <? include meta/standard ?> | 
| + <? include meta/social ?> | 
| + <? include styles ?> | 
| + <? include polyfills ?> | 
| + | 
| + {% block head %} | 
| + {{ head | safe }} | 
| + {% endblock %} | 
| </head> | 
| <body> | 
| - {{body|safe}} | 
| + <? include navbar ?> | 
| + | 
| + <main> | 
| + {% block body %} | 
| + {{ body | safe }} | 
| + {% endblock %} | 
| + </main> | 
| + | 
| + <? include footer ?> | 
| + <? include scripts ?> | 
| </body> | 
| </html> |