Skip to content

Commit 2fb6648

Browse files
ouadie-lahdiouiMilos Jevtovic
authored andcommitted
Add ayout Right-To-Left direction support (#1500)
1 parent 1da7e93 commit 2fb6648

17 files changed

+17
-17
lines changed

layouts/about.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/announcements.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/blog-index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{ site.locale }}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/blog-post.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/category-index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{ site.locale }}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/contribute.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/docs.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/download-current.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/download-releases.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/download.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/guides-index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/in-the-news.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/knowledge-base-index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/knowledge-post.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/page.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

layouts/security.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="{{site.locale}}">
2+
<html lang="{{site.locale}}" {{#if site.rtl}}dir="rtl"{{/if}}>
33
{{> html-head }}
44

55
<body>

0 commit comments

Comments
 (0)