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

Side by Side Diff: templates/default.tmpl

Issue 29510630: Noissue - Added canonical link to standard meta template (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Added siteurl and include to default.tmpl Created Aug. 21, 2017, 10:43 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 | « settings.ini ('k') | no next file » | 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 <!DOCTYPE html>
2 <html 2 <html
3 lang="{{ locale }}" 3 lang="{{ locale }}"
4 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> 4 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}">
5 <head> 5 <head>
6 <title>{{ title | translate("page-title", "Meta page title") }}</title> 6 <? include meta/standard ?>
7 <link rel="stylesheet" href="/css/main.css"> 7 <link rel="stylesheet" href="/css/main.css">
8 <link rel="stylesheet" href="/css/demo.css"> 8 <link rel="stylesheet" href="/css/demo.css">
9 </head> 9 </head>
10 <body> 10 <body>
11 <div class="container"> 11 <div class="container">
12 {{ body | safe }} 12 {{ body | safe }}
13 </div> 13 </div>
14 </body> 14 </body>
15 </html> 15 </html>
OLDNEW
« no previous file with comments | « settings.ini ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld