| Index: templates/minimal.tmpl |
| =================================================================== |
| --- a/templates/minimal.tmpl |
| +++ b/templates/minimal.tmpl |
| @@ -1,16 +1,20 @@ |
| <!DOCTYPE html> |
| <html |
| lang="{{ locale }}" |
| dir="{{ "rtl" if config.has_option("rtl", locale) else "ltr" }}" |
| class="no-js"> |
| <head> |
| <? include meta/standard ?> |
| + <? include meta/social ?> |
| <link rel="stylesheet" href="/css/main.css"> |
| + {% block head %} |
| + {{ head | safe }} |
| + {% endblock %} |
| </head> |
| <body> |
| {% block body %} |
| {{ body | safe }} |
| {% endblock %} |
| <script src="/js/main.js"></script> |
| </body> |
| </html> |