| Index: templates/minimal.tmpl |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/templates/minimal.tmpl |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE html> |
|
juliandoucette
2017/10/26 15:55:56
NIT: It's unclear why this change was necessary.
ire
2017/10/31 08:04:00
The default template (as we agreed before) will al
juliandoucette
2017/10/31 12:10:38
That makes sense. Thank you for explaining.
|
| +<html |
| + lang="{{ locale }}" |
| + dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" |
| + class="no-js"> |
| + <head> |
| + <? include meta/standard ?> |
| + <link rel="stylesheet" href="/css/main.css"> |
| + </head> |
| + <body> |
| + {% block body %} |
| + {{ body | safe }} |
| + {% endblock %} |
| + <script src="/js/main.js"></script> |
| + </body> |
| +</html> |