diff options
| author | Chris Rebert <[email protected]> | 2014-05-04 02:09:03 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-05-04 02:09:34 -0700 |
| commit | d6104b11511a69fb48d1e438141f135a14c04122 (patch) | |
| tree | 64c8261b3b18ae43afd7872ab2079faf2b04a1b7 | |
| parent | ce2cad6366d167c1fa17869478053dd490a94bd1 (diff) | |
| download | bootstrap-d6104b11511a69fb48d1e438141f135a14c04122.tar.xz bootstrap-d6104b11511a69fb48d1e438141f135a14c04122.zip | |
include RTL CSS CDN URL in Download docs
| -rw-r--r-- | _config.yml | 1 | ||||
| -rw-r--r-- | docs/_includes/getting-started/download.html | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/_config.yml b/_config.yml index 5aa95016c..8d4da2898 100644 --- a/_config.yml +++ b/_config.yml @@ -30,4 +30,5 @@ expo: http://expo.getbootstrap.com cdn: css: //netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css css_theme: //netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css + css_rtl: //netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-rtl.min.css js: //netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js diff --git a/docs/_includes/getting-started/download.html b/docs/_includes/getting-started/download.html index c89c8b9e4..b457d038e 100644 --- a/docs/_includes/getting-started/download.html +++ b/docs/_includes/getting-started/download.html @@ -33,6 +33,9 @@ <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="{{ site.cdn.css }}"> +<!-- RTL (right-to-left) version of CSS --> +<link rel="stylesheet" href="{{ site.cdn.css_rtl }}"> + <!-- Optional theme --> <link rel="stylesheet" href="{{ site.cdn.css_theme }}"> |
