| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 {% extends "templates/minimal" %} |
|
juliandoucette
2017/11/10 11:42:54
Detail: You can add this change and minimal.tmpl s
ire
2017/11/13 17:57:43
Done.
| |
| 2 <html | 2 |
| 3 lang="{{ locale }}" | 3 {% block body %} |
| 4 dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" | 4 <div class="container content"> |
| 5 class="no-js"> | 5 {{ body | safe }} |
| 6 <head> | 6 </div> |
| 7 <? include meta/standard ?> | 7 {% endblock %} |
| 8 <link rel="stylesheet" href="/css/main.css"> | |
| 9 <link rel="stylesheet" href="/css/demo.css"> | |
| 10 </head> | |
| 11 <body> | |
| 12 <div class="container content"> | |
| 13 {{ body | safe }} | |
| 14 </div> | |
| 15 <script src="/js/main.js"></script> | |
| 16 </body> | |
| 17 </html> | |
| OLD | NEW |