| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 {# | |
|
juliandoucette
2017/06/26 12:37:34
We may want to include a license header in the HTM
ire
2017/06/27 14:18:38
Done.
| |
| 2 # This file is part of help.eyeo.com. | |
| 3 # Copyright (C) 2017 Eyeo GmbH | |
| 4 # | |
| 5 # help.eyeo.com is free software: you can redistribute it and/or modify | |
| 6 # it under the terms of the GNU General Public License as published by | |
| 7 # the Free Software Foundation, either version 3 of the License, or | |
| 8 # (at your option) any later version. | |
| 9 # | |
| 10 # help.eyeo.com is distributed in the hope that it will be useful, | |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 # GNU General Public License for more details. | |
| 14 # | |
| 15 # You should have received a copy of the GNU General Public License | |
| 16 # along with acceptableads.org. If not, see <http://www.gnu.org/licenses/>. | |
| 17 #}<!DOCTYPE html> | |
| 18 <html | |
| 19 lang="{{ locale }}" | |
| 20 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> | |
| 21 <head> | |
| 22 <meta charset="utf-8"> | |
| 23 <title>{{ title | translate("page-title", "Meta page title") }}</title> | |
|
juliandoucette
2017/06/26 12:37:34
NIT: I would suggest putting the IE header (missin
ire
2017/06/27 14:18:38
Done. I thought most/all meta tags were handled by
juliandoucette
2017/07/03 15:37:54
They are, actually. I didn't know that you were co
ire
2017/07/04 09:33:15
Yes that was the plan. If it's okay by you, I'll l
juliandoucette
2017/07/06 13:13:34
Acknowledged.
| |
| 24 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to- fit=no"> | |
| 25 | |
| 26 <link rel="stylesheet" href="/css/main.css"> | |
|
juliandoucette
2017/06/26 12:37:34
I think the CMS will correct the path if you exclu
ire
2017/06/27 14:18:38
Done.
| |
| 27 | |
| 28 {{ head | safe }} | |
| 29 </head> | |
| 30 <body> | |
| 31 {{ body | safe }} | |
| 32 </body> | |
| 33 <html> | |
| OLD | NEW |