| Index: templates/default.tmpl |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/templates/default.tmpl |
| @@ -0,0 +1,15 @@ |
| +<!DOCTYPE html> |
| +<html |
| + lang="{{ locale }}" |
| + dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> |
| + <head> |
| + <title>{{ title | translate("page-title", "Meta page title") }}</title> |
| + <link rel="stylesheet" href="/css/main.css"> |
| + <link rel="stylesheet" href="/css/demo.css"> |
| + </head> |
| + <body> |
| + <div class="container"> |
| + {{ body | safe }} |
| + </div> |
| + </body> |
| +</html> |