Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: templates/default.tmpl

Issue 29605761: Noissue - Create minimal template for website-defaults (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Created Nov. 13, 2017, 11:13 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | templates/minimal.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 {% extends "templates/minimal" %}
2 <html 2
3 lang="{{ locale }}" 3 {% block body %}
4 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" 4 <div class="container content">
5 class="no-js"> 5 {{ body | safe }}
6 <head> 6 </div>
7 <? include meta/standard ?> 7 {% endblock %}
8 <link rel="stylesheet" href="/css/main.css">
9 <link rel="stylesheet" href="/css/demo.css">
10 </head>
11 <body>
12 <div class="container content">
13 {{ body | safe }}
14 </div>
15 <script src="/js/main.js"></script>
16 </body>
17 </html>
OLDNEW
« no previous file with comments | « no previous file | templates/minimal.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld