| Index: templates/default.tmpl |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/templates/default.tmpl |
| @@ -0,0 +1,14 @@ |
| +<!DOCTYPE html> |
| +<html lang="{{ locale }}" |
| + dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}"> |
| +<head> |
| + <meta charset="UTF-8"> |
| + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| + <title>Style Guide Demo</title> |
| +</head> |
| +<body> |
| +{% block body %} |
| + {{body|safe}} |
| +{% endblock %} |
| +</body> |
| +</html> |