| Left: | ||
| Right: | 
| 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 class="no-js"> | 5 class="no-js"> | 
| 6 <head> | 6 <head> | 
| 7 <? include meta/standard ?> | 7 <? include meta/standard ?> | 
| 8 <? include meta/social ?> | 8 <? include meta/social ?> | 
| 9 <link rel="stylesheet" href="/css/main.css"> | 9 <link rel="stylesheet" href="/css/main.css"> | 
| 10 {% block head %} | |
| 11 {{ head | safe }} | |
| 12 {% endblock %} | |
| 13 </head> | 10 </head> | 
| 14 <body> | 11 <body> | 
| 15 {% block body %} | 12 {% block body %} | 
| 16 {{ body | safe }} | 13 {{ body | safe }} | 
| 17 {% endblock %} | 14 {% endblock %} | 
| 18 <script src="/js/main.js"></script> | 15 <script src="/js/main.js"></script> | 
| 19 </body> | 16 </body> | 
| 20 </html> | 17 </html> | 
| LEFT | RIGHT |