LEFT | RIGHT |
1 {# | 1 {# |
2 # This file is part of the Adblock Plus website, | 2 # This file is part of the Adblock Plus website, |
3 # Copyright (C) 2006-2016 Eyeo GmbH | 3 # Copyright (C) 2006-2016 Eyeo GmbH |
4 # | 4 # |
5 # Adblock Plus is free software: you can redistribute it and/or modify | 5 # Adblock Plus is free software: you can redistribute it and/or modify |
6 # it under the terms of the GNU General Public License version 3 as | 6 # it under the terms of the GNU General Public License version 3 as |
7 # published by the Free Software Foundation. | 7 # published by the Free Software Foundation. |
8 # | 8 # |
9 # Adblock Plus is distributed in the hope that it will be useful, | 9 # Adblock Plus is distributed in the hope that it will be useful, |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 # GNU General Public License for more details. | 12 # GNU General Public License for more details. |
13 # | 13 # |
14 # You should have received a copy of the GNU General Public License | 14 # You should have received a copy of the GNU General Public License |
15 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 #} | 16 #} |
17 | 17 |
18 <!DOCTYPE html> | 18 <!DOCTYPE html> |
19 <html lang="{{locale}}" dir="{{"rtl" if config.has_option("rtl", locale) else "l
tr"}}" itemscope="itemscope" itemtype="http://schema.org/WebPage"> | 19 <html lang="{{locale}}" dir="{{"rtl" if config.has_option("rtl", locale) else "l
tr"}}" itemscope="itemscope" itemtype="http://schema.org/WebPage"> |
20 <head> | 20 <head> |
21 <meta charset="utf-8"> | 21 <meta charset="utf-8"> |
22 <meta name="viewport" content="width=device-width, initial-scale=1"> | 22 <meta name="viewport" content="width=device-width, initial-scale=1"> |
23 | 23 |
24 <title>{{title|translate("title")}}</title> | 24 <title>{{title|translate("title", "meta")}}</title> |
25 {% if description %} | 25 {% if description %} |
26 <meta name="description" content="{{description|translate("description")}}"> | 26 <meta name="description" content="{{description|translate("description", "me
ta")}}"> |
27 {% endif %} | 27 {% endif %} |
28 | 28 |
29 {# facebook / Open Graph http://ogp.me/ #} | 29 {# facebook / Open Graph http://ogp.me/ #} |
30 <meta property="og:image" content="{{og_image if og_image else '/img/adblock
plus_promo.png'}}" /> | 30 <meta property="og:image" content="{{og_image if og_image else '/img/adblock
plus_promo.png'}}" /> |
31 | 31 |
32 {# twitter https://dev.twitter.com/cards/markup #} | 32 {# twitter https://dev.twitter.com/cards/markup #} |
33 <meta name="twitter:site" content="@AdblockPlus" /> | 33 <meta name="twitter:site" content="@AdblockPlus" /> |
34 <meta name="twitter:creator" content="@AdblockPlus" /> | 34 <meta name="twitter:creator" content="@AdblockPlus" /> |
35 | 35 |
36 <link rel="stylesheet" href="/css/main.css" class="cssfx"> | 36 <link rel="stylesheet" href="/css/main.css" class="cssfx"> |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p
lus.google.com/110020691898167279887"></a> | 199 <a rel="nofollow" id="social-gplus" class="sprite" href="https://p
lus.google.com/110020691898167279887"></a> |
200 </li> | 200 </li> |
201 </ul> | 201 </ul> |
202 </section> | 202 </section> |
203 </div> | 203 </div> |
204 </footer> | 204 </footer> |
205 | 205 |
206 <script src="/js/main.js"></script> | 206 <script src="/js/main.js"></script> |
207 </body> | 207 </body> |
208 </html> | 208 </html> |
LEFT | RIGHT |