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

Unified Diff: templates/minimal.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.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « templates/default.tmpl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/minimal.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/templates/minimal.tmpl
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html
+ lang="{{ locale }}"
+ dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"
+ class="no-js">
+ <head>
+ <? include meta/standard ?>
+ <link rel="stylesheet" href="/css/main.css">
+ </head>
+ <body>
+ {% block body %}
+ {{ body | safe }}
+ {% endblock %}
+ <script src="/js/main.js"></script>
+ </body>
+</html>
« no previous file with comments | « templates/default.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld