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

Side by Side Diff: templates/default.tmpl

Issue 29587584: Issue 5635 - Implement website-default navbar component (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Add navigation <ul> links Created Nov. 10, 2017, 10:22 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
OLDNEW
1 <!DOCTYPE html> 1 {% extends "templates/minimal" %}
juliandoucette 2017/11/10 11:42:54 Detail: You can add this change and minimal.tmpl s
ire 2017/11/13 17:57:43 Done.
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
« static/scss/_utilities.scss ('K') | « static/scss/main.scss ('k') | templates/minimal.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld