RTL
Right to Left version
Recommended for RTL languages including Arabic and Hebrew.
Dashly supports right-to-left text, to set it up please see the configuration page.
By changing the default settings in the config file, Dashly will set dir="rtl"
on the <html>
element and add a right-to-left CSS version to the site.
You can test it by clicking the "Customize" button at the bottom of any page on the demo site and switching on "RTL mode"
<html {{#if isRTL}}dir="rtl"{{/if}}>
<head>
{{#if isRTL}}
<link rel="stylesheet" href="../assets/css/theme.rtl.bundle.css" />
{{else}}
<link rel="stylesheet" href="../assets/css/theme.bundle.css" />
{{/if}}
</head>
...
</html>