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

Delta Between Two Patch Sets: templates/minimal.tmpl

Issue 29624561: Issue 6104 - Minified code in help center repository (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Left Patch Set: Created Nov. 29, 2017, 2:25 p.m.
Right Patch Set: Consolidated gulp tasks Created Dec. 7, 2017, 2:48 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« gulpfile.js ('K') | « templates/article.tmpl ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 This file is part of help.eyeo.com. 3 This file is part of help.eyeo.com.
4 Copyright (C) 2017-present eyeo GmbH 4 Copyright (C) 2017-present eyeo GmbH
5 5
6 help.eyeo.com is free software: you can redistribute it and/or modify 6 help.eyeo.com is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or 8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
(...skipping 10 matching lines...) Expand all
21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" 21 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"
22 class="no-js"> 22 class="no-js">
23 <head> 23 <head>
24 24
25 <? include meta/standard ?> 25 <? include meta/standard ?>
26 26
27 <!--[if IE 8]> 27 <!--[if IE 8]>
28 <script src="/js/vendor/ie8.min.js"></script> 28 <script src="/js/vendor/ie8.min.js"></script>
29 <![endif]--> 29 <![endif]-->
30 30
31 <link rel="stylesheet" href="/css/main.min.css"> 31 <link rel="stylesheet" href="/dist/css/main.min.css">
32 32
33 <!--[if lt IE 9]> 33 <!--[if lt IE 9]>
34 <script src="/js/vendor/html5shiv.min.js"></script> 34 <script src="/js/vendor/html5shiv.min.js"></script>
35 <script src="/js/vendor/respond.min.js"></script> 35 <script src="/js/vendor/respond.min.js"></script>
36 <![endif]--> 36 <![endif]-->
37 37
38 <!--[if lt IE 10]> 38 <!--[if lt IE 10]>
39 <script src="/js/vendor/classList.min.js"></script> 39 <script src="/js/vendor/classList.min.js"></script>
40 <script src="/js/vendor/element-closest.min.js"></script> 40 <script src="/js/vendor/element-closest.min.js"></script>
41 <![endif]--> 41 <![endif]-->
42 42
43 {% block head %} 43 {% block head %}
44 {{ head | safe }} 44 {{ head | safe }}
45 {% endblock %} 45 {% endblock %}
46 </head> 46 </head>
47 <body> 47 <body>
48 <? include layout/header ?> 48 <? include layout/header ?>
49 <div class="outer"> 49 <div class="outer">
50 {% block body %} 50 {% block body %}
51 {{ body | safe }} 51 {{ body | safe }}
52 {% endblock %} 52 {% endblock %}
53 </div> 53 </div>
54 {% block footer %} 54 {% block footer %}
55 {{ footer | safe }} 55 {{ footer | safe }}
56 {% endblock %} 56 {% endblock %}
57 <? include layout/footer ?> 57 <? include layout/footer ?>
58 {% block scripts %} 58 {% block scripts %}
59 {{ scripts | safe }} 59 {{ scripts | safe }}
60 {% endblock %} 60 {% endblock %}
61 <script src="/js/main.min.js"></script> 61 <script src="/dist/js/main.min.js"></script>
62 </body> 62 </body>
63 <html> 63 <html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld