> For the complete documentation index, see [llms.txt](https://docs-drift-angular.g-axon.work/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-drift-angular.g-axon.work/settings/rtl.md).

# RTL

### Overview

Drift Angular provides a seprate configured template for RTL support. `skeleton-rtl`

### Generate RTL CSS

To generate RTL css run the command to install Gulp dependencies.

```
$ npm install
```

Compile the scss by running the following command:

```
$ gulp
```

### RTL attributes

Open the Angular index.html file from `src/index.html`. Add the RTL attributes to the HTML tag.

```markup
<html lang="en" direction="rtl" dir="rtl" style="direction: rtl">
```

### Link RTL Css

Open the Angular index.html file from `src/index.html`. link the RTL css before head tag close `</head>`&#x20;

```markup
<link rel="stylesheet" href="assets/css/default/theme-semidark-rtl.min.css">
```
