diff --git a/README.md b/README.md index f55b282ef..e3d5cb2c7 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,23 @@ To use our build system and run our documentation locally, you'll need a copy of 3. [Install Ruby](https://www.ruby-lang.org/en/documentation/installation/) - the recommended version is [2.7.6](https://cache.ruby-lang.org/pub/ruby/2.7/ruby-2.7.6.tar.gz). 4. [Install Bundler](https://bundler.io) with `gem install bundler` and finally run `bundle install`. It will install all Ruby dependencies, such as [Jekyll and plugins](https://jekyllrb.com). +**OSX users**: +0. NPM ```npm install``` +1. install Ruby (2.5.* recommended) + ```brew install ruby @2.5``` +2. install bundler + ```gem install bundler``` +3. install + ```bundle install``` +- if bundler get any errors try +``` +sudo rm -rf /Library/Developer/CommandLineTools +sudo xcode-select --install +``` +4. Run NPM + ```npm run start``` + + **Windows users**: 1. [Install Git](https://git-scm.com/download/win) in `C:\Program Files\git\bin` directory and run `npm config set script-shell "C:\\Program Files\\git\\bin\\bash.exe"` to change the default shell. diff --git a/src/pages/_data/menu.yml b/src/pages/_data/menu.yml index 26d02e0fa..0cadebe01 100644 --- a/src/pages/_data/menu.yml +++ b/src/pages/_data/menu.yml @@ -185,6 +185,10 @@ extra: wizard: title: Wizard url: wizard.html + settings: + title: Settings + url: settings.html + badge: New layout: icon: layout-2 diff --git a/src/pages/_includes/layout/headers/page-header-settings.html b/src/pages/_includes/layout/headers/page-header-settings.html new file mode 100644 index 000000000..4d1d9afdf --- /dev/null +++ b/src/pages/_includes/layout/headers/page-header-settings.html @@ -0,0 +1,17 @@ + \ No newline at end of file diff --git a/src/pages/settings.html b/src/pages/settings.html new file mode 100644 index 000000000..4186c4e47 --- /dev/null +++ b/src/pages/settings.html @@ -0,0 +1,27 @@ +--- +layout: default +title: Settings +--- +{% include layout/headers/page-header-settings.html %} +
+
+ {% assign items = "Account,Preferences,Privacy Settings, Theme,Audience and visibility,App Development" | split: "," %} +
+ {% for item in items %} + + {{ item }} + {{ forloop.index | random_number: 11, 200 }} + + {% endfor %} +
+
+
+
+
+ {% include cards/form/layout.html horizontal=true title="Account" %} +
+
+
+
+