LEFT | RIGHT |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html | 2 <html |
3 lang="{{ locale }}" | 3 lang="{{ locale }}" |
4 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> | 4 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> |
5 <head> | 5 <head> |
6 <title>{{ title | translate("page-title", "Meta page title") }}</title> | |
7 <? include meta/social ?> | 6 <? include meta/social ?> |
| 7 <? include meta/standard ?> |
8 <link rel="stylesheet" href="/css/main.css"> | 8 <link rel="stylesheet" href="/css/main.css"> |
9 <link rel="stylesheet" href="/css/demo.css"> | 9 <link rel="stylesheet" href="/css/demo.css"> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <div class="container"> | 12 <div class="container"> |
13 {{ body | safe }} | 13 {{ body | safe }} |
14 </div> | 14 </div> |
15 </body> | 15 </body> |
16 </html> | 16 </html> |
LEFT | RIGHT |