diff --git a/about/index.html b/about/index.html
index 53527ef0..30cb6040 100644
--- a/about/index.html
+++ b/about/index.html
@@ -2,9 +2,9 @@
]
+Deploy generated files to a git branch.
+
+Options:
+
+ -h, --help Show this help information.
+ -v, --verbose Increase verbosity. Useful for debugging.
+ -e, --allow-empty Allow deployment of an empty directory.
+ -m, --message MESSAGE Specify the message used when committing on the
+ deploy branch.
+ -n, --no-hash Don't append the source commit's hash to the deploy
+ commit's message.
+ -c, --config-file PATH Override default & environment variables' values
+ with those in set in the file at 'PATH'. Must be the
+ first option specified.
+
+Variables:
+
+ GIT_DEPLOY_DIR Folder path containing the files to deploy.
+ GIT_DEPLOY_BRANCH Commit deployable files to this branch.
+ GIT_DEPLOY_REPO Push the deploy branch to this repository.
+
+These variables have default values defined in the script. The defaults can be
+overridden by environment variables. Any environment variables are overridden
+by values set in a '.env' file (if it exists), and in turn by those set in a
+file specified by the '--config-file' option."
+
+parse_args() {
+ # Set args from a local environment file.
+ if [ -e ".env" ]; then
+ source .env
+ fi
+
+ # Set args from file specified on the command-line.
+ if [[ $1 = "-c" || $1 = "--config-file" ]]; then
+ source "$2"
+ shift 2
+ fi
+
+ # Parse arg flags
+ # If something is exposed as an environment variable, set/overwrite it
+ # here. Otherwise, set/overwrite the internal variable instead.
+ while : ; do
+ if [[ $1 = "-h" || $1 = "--help" ]]; then
+ echo "$help_message"
+ return 0
+ elif [[ $1 = "-v" || $1 = "--verbose" ]]; then
+ verbose=true
+ shift
+ elif [[ $1 = "-e" || $1 = "--allow-empty" ]]; then
+ allow_empty=true
+ shift
+ elif [[ ( $1 = "-m" || $1 = "--message" ) && -n $2 ]]; then
+ commit_message=$2
+ shift 2
+ elif [[ $1 = "-n" || $1 = "--no-hash" ]]; then
+ GIT_DEPLOY_APPEND_HASH=false
+ shift
+ else
+ break
+ fi
+ done
+
+ # Set internal option vars from the environment and arg flags. All internal
+ # vars should be declared here, with sane defaults if applicable.
+
+ # Source directory & target branch.
+ deploy_directory=${GIT_DEPLOY_DIR:-_gh_pages}
+ deploy_branch=${GIT_DEPLOY_BRANCH:-gh-pages}
+
+ #if no user identity is already set in the current git environment, use this:
+ default_username=${GIT_DEPLOY_USERNAME:-deploy.sh}
+ default_email=${GIT_DEPLOY_EMAIL:-}
+
+ #repository to deploy to. must be readable and writable.
+ repo=${GIT_DEPLOY_REPO:-origin}
+
+ #append commit hash to the end of message by default
+ append_hash=${GIT_DEPLOY_APPEND_HASH:-true}
+}
+
+main() {
+ parse_args "$@"
+
+ enable_expanded_output
+
+ if ! git diff --exit-code --quiet --cached; then
+ echo Aborting due to uncommitted changes in the index >&2
+ return 1
+ fi
+
+ commit_title=`git log -n 1 --format="%s" HEAD`
+ commit_hash=` git log -n 1 --format="%H" HEAD`
+
+ #default commit message uses last title if a custom one is not supplied
+ if [[ -z $commit_message ]]; then
+ commit_message="publish: $commit_title"
+ fi
+
+ #append hash to commit message unless no hash flag was found
+ if [ $append_hash = true ]; then
+ commit_message="$commit_message"$'\n\n'"generated from commit $commit_hash"
+ fi
+
+ previous_branch=`git rev-parse --abbrev-ref HEAD`
+
+ if [ ! -d "$deploy_directory" ]; then
+ echo "Deploy directory '$deploy_directory' does not exist. Aborting." >&2
+ return 1
+ fi
+
+ # must use short form of flag in ls for compatibility with OS X and BSD
+ if [[ -z `ls -A "$deploy_directory" 2> /dev/null` && -z $allow_empty ]]; then
+ echo "Deploy directory '$deploy_directory' is empty. Aborting. If you're sure you want to deploy an empty tree, use the --allow-empty / -e flag." >&2
+ return 1
+ fi
+
+ if git ls-remote --exit-code $repo "refs/heads/$deploy_branch" ; then
+ # deploy_branch exists in $repo; make sure we have the latest version
+
+ disable_expanded_output
+ git fetch --force $repo $deploy_branch:$deploy_branch
+ enable_expanded_output
+ fi
+
+ # check if deploy_branch exists locally
+ if git show-ref --verify --quiet "refs/heads/$deploy_branch"
+ then incremental_deploy
+ else initial_deploy
+ fi
+
+ restore_head
+}
+
+initial_deploy() {
+ git --work-tree "$deploy_directory" checkout --orphan $deploy_branch
+ git --work-tree "$deploy_directory" add --all
+ commit+push
+}
+
+incremental_deploy() {
+ #make deploy_branch the current branch
+ git symbolic-ref HEAD refs/heads/$deploy_branch
+ #put the previously committed contents of deploy_branch into the index
+ git --work-tree "$deploy_directory" reset --mixed --quiet
+ git --work-tree "$deploy_directory" add --all
+
+ set +o errexit
+ diff=$(git --work-tree "$deploy_directory" diff --exit-code --quiet HEAD --)$?
+ set -o errexit
+ case $diff in
+ 0) echo No changes to files in $deploy_directory. Skipping commit.;;
+ 1) commit+push;;
+ *)
+ echo git diff exited with code $diff. Aborting. Staying on branch $deploy_branch so you can debug. To switch back to master, use: git symbolic-ref HEAD refs/heads/master && git reset --mixed >&2
+ return $diff
+ ;;
+ esac
+}
+
+commit+push() {
+ set_user_id
+ git --work-tree "$deploy_directory" commit -m "$commit_message"
+
+ disable_expanded_output
+ #--quiet is important here to avoid outputting the repo URL, which may contain a secret token
+ git push --quiet $repo $deploy_branch
+ enable_expanded_output
+}
+
+#echo expanded commands as they are executed (for debugging)
+enable_expanded_output() {
+ if [ $verbose ]; then
+ set -o xtrace
+ set +o verbose
+ fi
+}
+
+#this is used to avoid outputting the repo URL, which may contain a secret token
+disable_expanded_output() {
+ if [ $verbose ]; then
+ set +o xtrace
+ set -o verbose
+ fi
+}
+
+set_user_id() {
+ if [[ -z `git config user.name` ]]; then
+ git config user.name "$default_username"
+ fi
+ if [[ -z `git config user.email` ]]; then
+ git config user.email "$default_email"
+ fi
+}
+
+restore_head() {
+ if [[ $previous_branch = "HEAD" ]]; then
+ #we weren't on any branch before, so just set HEAD back to the commit it was on
+ git update-ref --no-deref HEAD $commit_hash $deploy_branch
+ else
+ git symbolic-ref HEAD refs/heads/$previous_branch
+ fi
+
+ git reset --mixed
+}
+
+filter() {
+ sed -e "s|$repo|\$repo|g"
+}
+
+sanitize() {
+ "$@" 2> >(filter 1>&2) | filter
+}
+
+[[ $1 = --source-only ]] || main "$@"
diff --git a/docs/4.0/about/brand/index.html b/docs/4.0/about/brand/index.html
index 6d956ec3..e3329e1e 100644
--- a/docs/4.0/about/brand/index.html
+++ b/docs/4.0/about/brand/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/about/history/index.html b/docs/4.0/about/history/index.html
index 4c558997..128f861b 100644
--- a/docs/4.0/about/history/index.html
+++ b/docs/4.0/about/history/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/about/license/index.html b/docs/4.0/about/license/index.html
index d2d4c12a..8891f906 100644
--- a/docs/4.0/about/license/index.html
+++ b/docs/4.0/about/license/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/about/team/index.html b/docs/4.0/about/team/index.html
index 61dd2692..079875da 100644
--- a/docs/4.0/about/team/index.html
+++ b/docs/4.0/about/team/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/about/translations/index.html b/docs/4.0/about/translations/index.html
index 8f2cc67a..9fac2f0c 100644
--- a/docs/4.0/about/translations/index.html
+++ b/docs/4.0/about/translations/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/browser-bugs/index.html b/docs/4.0/browser-bugs/index.html
index 981a96d7..e532a9ef 100644
--- a/docs/4.0/browser-bugs/index.html
+++ b/docs/4.0/browser-bugs/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/alerts/index.html b/docs/4.0/components/alerts/index.html
index 22124775..26134dcd 100644
--- a/docs/4.0/components/alerts/index.html
+++ b/docs/4.0/components/alerts/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/badge/index.html b/docs/4.0/components/badge/index.html
index 02d95a57..6a71e9cd 100644
--- a/docs/4.0/components/badge/index.html
+++ b/docs/4.0/components/badge/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/breadcrumb/index.html b/docs/4.0/components/breadcrumb/index.html
index 4d97080e..c818b093 100644
--- a/docs/4.0/components/breadcrumb/index.html
+++ b/docs/4.0/components/breadcrumb/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/button-group/index.html b/docs/4.0/components/button-group/index.html
index c0b1035b..87e6d227 100644
--- a/docs/4.0/components/button-group/index.html
+++ b/docs/4.0/components/button-group/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/buttons/index.html b/docs/4.0/components/buttons/index.html
index 3d357c86..6daac352 100644
--- a/docs/4.0/components/buttons/index.html
+++ b/docs/4.0/components/buttons/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/card/index.html b/docs/4.0/components/card/index.html
index a01c7717..c705af38 100644
--- a/docs/4.0/components/card/index.html
+++ b/docs/4.0/components/card/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/carousel/index.html b/docs/4.0/components/carousel/index.html
index 0fbd993d..656ea13e 100644
--- a/docs/4.0/components/carousel/index.html
+++ b/docs/4.0/components/carousel/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/collapse/index.html b/docs/4.0/components/collapse/index.html
index 863403f4..8dc5b8b5 100644
--- a/docs/4.0/components/collapse/index.html
+++ b/docs/4.0/components/collapse/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/dropdowns/index.html b/docs/4.0/components/dropdowns/index.html
index 5eff8b10..99fdb6cb 100644
--- a/docs/4.0/components/dropdowns/index.html
+++ b/docs/4.0/components/dropdowns/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/forms/index.html b/docs/4.0/components/forms/index.html
index 96cf7334..8dcb25a8 100644
--- a/docs/4.0/components/forms/index.html
+++ b/docs/4.0/components/forms/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/index.html b/docs/4.0/components/index.html
index ce63cfc7..7c0b7614 100644
--- a/docs/4.0/components/index.html
+++ b/docs/4.0/components/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/docs/4.0/components/input-group/index.html b/docs/4.0/components/input-group/index.html
index 051db5e5..e36a187e 100644
--- a/docs/4.0/components/input-group/index.html
+++ b/docs/4.0/components/input-group/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/jumbotron/index.html b/docs/4.0/components/jumbotron/index.html
index 9a4ee7e5..7390d685 100644
--- a/docs/4.0/components/jumbotron/index.html
+++ b/docs/4.0/components/jumbotron/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/list-group/index.html b/docs/4.0/components/list-group/index.html
index cd339999..55f79904 100644
--- a/docs/4.0/components/list-group/index.html
+++ b/docs/4.0/components/list-group/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/modal/index.html b/docs/4.0/components/modal/index.html
index 929adbf7..21866c4e 100644
--- a/docs/4.0/components/modal/index.html
+++ b/docs/4.0/components/modal/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/navbar/index.html b/docs/4.0/components/navbar/index.html
index b8bdee86..1fe71dfd 100644
--- a/docs/4.0/components/navbar/index.html
+++ b/docs/4.0/components/navbar/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/navs/index.html b/docs/4.0/components/navs/index.html
index ebcb6dda..b6490658 100644
--- a/docs/4.0/components/navs/index.html
+++ b/docs/4.0/components/navs/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/pagination/index.html b/docs/4.0/components/pagination/index.html
index e55722e5..8e1ab505 100644
--- a/docs/4.0/components/pagination/index.html
+++ b/docs/4.0/components/pagination/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/popovers/index.html b/docs/4.0/components/popovers/index.html
index ea6709c3..4094ed5d 100644
--- a/docs/4.0/components/popovers/index.html
+++ b/docs/4.0/components/popovers/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/progress/index.html b/docs/4.0/components/progress/index.html
index 936e7b22..b079bc0a 100644
--- a/docs/4.0/components/progress/index.html
+++ b/docs/4.0/components/progress/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/scrollspy/index.html b/docs/4.0/components/scrollspy/index.html
index d47fa46f..2ac6e6d7 100644
--- a/docs/4.0/components/scrollspy/index.html
+++ b/docs/4.0/components/scrollspy/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/components/tooltips/index.html b/docs/4.0/components/tooltips/index.html
index 57293c41..c7c5791c 100644
--- a/docs/4.0/components/tooltips/index.html
+++ b/docs/4.0/components/tooltips/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/content/code/index.html b/docs/4.0/content/code/index.html
index 910e51f3..8f69e68b 100644
--- a/docs/4.0/content/code/index.html
+++ b/docs/4.0/content/code/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/content/figures/index.html b/docs/4.0/content/figures/index.html
index ff5ac4f0..76521f38 100644
--- a/docs/4.0/content/figures/index.html
+++ b/docs/4.0/content/figures/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/content/images/index.html b/docs/4.0/content/images/index.html
index 79b7bdfc..34c37ebb 100644
--- a/docs/4.0/content/images/index.html
+++ b/docs/4.0/content/images/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/content/index.html b/docs/4.0/content/index.html
index fa05c3f6..36abaea9 100644
--- a/docs/4.0/content/index.html
+++ b/docs/4.0/content/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/docs/4.0/content/reboot/index.html b/docs/4.0/content/reboot/index.html
index 94b7f314..77b63eb7 100644
--- a/docs/4.0/content/reboot/index.html
+++ b/docs/4.0/content/reboot/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/content/tables/index.html b/docs/4.0/content/tables/index.html
index d92e3f0e..35de6bec 100644
--- a/docs/4.0/content/tables/index.html
+++ b/docs/4.0/content/tables/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/content/typography/index.html b/docs/4.0/content/typography/index.html
index 7e03f202..895be2eb 100644
--- a/docs/4.0/content/typography/index.html
+++ b/docs/4.0/content/typography/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/examples/index.html b/docs/4.0/examples/index.html
index e365cd7f..a1fc8953 100644
--- a/docs/4.0/examples/index.html
+++ b/docs/4.0/examples/index.html
@@ -41,16 +41,16 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/extend/approach/index.html b/docs/4.0/extend/approach/index.html
index 21382630..d9a20b82 100644
--- a/docs/4.0/extend/approach/index.html
+++ b/docs/4.0/extend/approach/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/extend/icons/index.html b/docs/4.0/extend/icons/index.html
index a01d9796..51c9119c 100644
--- a/docs/4.0/extend/icons/index.html
+++ b/docs/4.0/extend/icons/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/extend/index.html b/docs/4.0/extend/index.html
index 51df1cd1..167e2a27 100644
--- a/docs/4.0/extend/index.html
+++ b/docs/4.0/extend/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/accessibility/index.html b/docs/4.0/getting-started/accessibility/index.html
index ad602388..d1b8610f 100644
--- a/docs/4.0/getting-started/accessibility/index.html
+++ b/docs/4.0/getting-started/accessibility/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/best-practices/index.html b/docs/4.0/getting-started/best-practices/index.html
index 8ce8bd24..70bb6f49 100644
--- a/docs/4.0/getting-started/best-practices/index.html
+++ b/docs/4.0/getting-started/best-practices/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/browsers-devices/index.html b/docs/4.0/getting-started/browsers-devices/index.html
index 5d8c8a76..9783e212 100644
--- a/docs/4.0/getting-started/browsers-devices/index.html
+++ b/docs/4.0/getting-started/browsers-devices/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/build-tools/index.html b/docs/4.0/getting-started/build-tools/index.html
index 890bec22..6ee221eb 100644
--- a/docs/4.0/getting-started/build-tools/index.html
+++ b/docs/4.0/getting-started/build-tools/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/contents/index.html b/docs/4.0/getting-started/contents/index.html
index d6d90f46..4068840e 100644
--- a/docs/4.0/getting-started/contents/index.html
+++ b/docs/4.0/getting-started/contents/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/download/index.html b/docs/4.0/getting-started/download/index.html
index 50bc2ac2..a246e888 100644
--- a/docs/4.0/getting-started/download/index.html
+++ b/docs/4.0/getting-started/download/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/index.html b/docs/4.0/getting-started/index.html
index f10bd822..b8531bb4 100644
--- a/docs/4.0/getting-started/index.html
+++ b/docs/4.0/getting-started/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/docs/4.0/getting-started/introduction/index.html b/docs/4.0/getting-started/introduction/index.html
index d877d190..167fd3e4 100644
--- a/docs/4.0/getting-started/introduction/index.html
+++ b/docs/4.0/getting-started/introduction/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/javascript/index.html b/docs/4.0/getting-started/javascript/index.html
index d77d3309..9e4bd7dc 100644
--- a/docs/4.0/getting-started/javascript/index.html
+++ b/docs/4.0/getting-started/javascript/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/options/index.html b/docs/4.0/getting-started/options/index.html
index c187bdb2..0b96827a 100644
--- a/docs/4.0/getting-started/options/index.html
+++ b/docs/4.0/getting-started/options/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/getting-started/webpack/index.html b/docs/4.0/getting-started/webpack/index.html
index 1655188c..7848f7ce 100644
--- a/docs/4.0/getting-started/webpack/index.html
+++ b/docs/4.0/getting-started/webpack/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/index.html b/docs/4.0/index.html
index f10bd822..b8531bb4 100644
--- a/docs/4.0/index.html
+++ b/docs/4.0/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/docs/4.0/layout/grid/index.html b/docs/4.0/layout/grid/index.html
index ef985f8b..d1808f58 100644
--- a/docs/4.0/layout/grid/index.html
+++ b/docs/4.0/layout/grid/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/layout/index.html b/docs/4.0/layout/index.html
index 17e6adb5..0779a4a6 100644
--- a/docs/4.0/layout/index.html
+++ b/docs/4.0/layout/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/docs/4.0/layout/media-object/index.html b/docs/4.0/layout/media-object/index.html
index e3b3b9e6..7875d8aa 100644
--- a/docs/4.0/layout/media-object/index.html
+++ b/docs/4.0/layout/media-object/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/layout/overview/index.html b/docs/4.0/layout/overview/index.html
index d08d320e..0b90278a 100644
--- a/docs/4.0/layout/overview/index.html
+++ b/docs/4.0/layout/overview/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/layout/utilities-for-layout/index.html b/docs/4.0/layout/utilities-for-layout/index.html
index 20c54f9f..bddcbd27 100644
--- a/docs/4.0/layout/utilities-for-layout/index.html
+++ b/docs/4.0/layout/utilities-for-layout/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/buttons/index.html b/docs/4.0/material-design/buttons/index.html
index 82677bf3..75b972da 100644
--- a/docs/4.0/material-design/buttons/index.html
+++ b/docs/4.0/material-design/buttons/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/collapse-inline/index.html b/docs/4.0/material-design/collapse-inline/index.html
index 53d00c9c..8bfc9f81 100644
--- a/docs/4.0/material-design/collapse-inline/index.html
+++ b/docs/4.0/material-design/collapse-inline/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
- The Material Design for Bootstrap CollapseInline
plugin allows you to toggle inline content on your pages with a bit of JavaScript and some classes. This plugin utilizes a handful of classes from the Bootstrap collapse plugin for easy toggle behavior. Since most functionality and documentation (including a rich set of Javascript events) is already provided by the Bootstrap collapse plugin , the following will focus only on some samples utilizing the BMD CollapseInline
component.
+ The Material Design for Bootstrap CollapseInline
plugin allows you to toggle inline content on your pages with a bit of JavaScript and some classes. This plugin utilizes a handful of classes from the Bootstrap collapse plugin for easy toggle behavior. Since most functionality and documentation (including a rich set of Javascript events) is already provided by the Bootstrap collapse plugin , the following will focus only on some samples utilizing the BMD CollapseInline
component.
Contents
@@ -1256,7 +1256,7 @@
Javascript event example
-Behavior customization can be achieved by responding to the collapse plugin’s Javascript events .
+Behavior customization can be achieved by responding to the collapse plugin’s Javascript events .
For example, the following code would clear the search input field after collapsing it:
@@ -1273,24 +1273,24 @@
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/drawers/index.html b/docs/4.0/material-design/drawers/index.html
index 815c53be..1a2659e1 100644
--- a/docs/4.0/material-design/drawers/index.html
+++ b/docs/4.0/material-design/drawers/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/extensions/index.html b/docs/4.0/material-design/extensions/index.html
index 5e99d3c2..7b978e6e 100644
--- a/docs/4.0/material-design/extensions/index.html
+++ b/docs/4.0/material-design/extensions/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/forms/index.html b/docs/4.0/material-design/forms/index.html
index ee5a76d5..6b6b7135 100644
--- a/docs/4.0/material-design/forms/index.html
+++ b/docs/4.0/material-design/forms/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/labels/index.html b/docs/4.0/material-design/labels/index.html
index a3f5a666..4a2e708d 100644
--- a/docs/4.0/material-design/labels/index.html
+++ b/docs/4.0/material-design/labels/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/list-groups/index.html b/docs/4.0/material-design/list-groups/index.html
index cd1fdb99..ba66d9b2 100644
--- a/docs/4.0/material-design/list-groups/index.html
+++ b/docs/4.0/material-design/list-groups/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/menus/index.html b/docs/4.0/material-design/menus/index.html
index 0335a659..e84b46c5 100644
--- a/docs/4.0/material-design/menus/index.html
+++ b/docs/4.0/material-design/menus/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
- Bootstrap users know these as dropdowns , but these are also known as menus in the Material Design specification .
+ Bootstrap users know these as dropdowns , but these are also known as menus in the Material Design specification .
Contents
@@ -1473,24 +1473,24 @@
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/navs/index.html b/docs/4.0/material-design/navs/index.html
index 13aa182b..1be62241 100644
--- a/docs/4.0/material-design/navs/index.html
+++ b/docs/4.0/material-design/navs/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/selections/index.html b/docs/4.0/material-design/selections/index.html
index ddc17f6a..7d2cf70b 100644
--- a/docs/4.0/material-design/selections/index.html
+++ b/docs/4.0/material-design/selections/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/material-design/snackbars/index.html b/docs/4.0/material-design/snackbars/index.html
index db751a49..ed743612 100644
--- a/docs/4.0/material-design/snackbars/index.html
+++ b/docs/4.0/material-design/snackbars/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/migration/index.html b/docs/4.0/migration/index.html
index 42dbbfbd..abf201c4 100644
--- a/docs/4.0/migration/index.html
+++ b/docs/4.0/migration/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/borders/index.html b/docs/4.0/utilities/borders/index.html
index f8affe00..3cc6c54b 100644
--- a/docs/4.0/utilities/borders/index.html
+++ b/docs/4.0/utilities/borders/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/clearfix/index.html b/docs/4.0/utilities/clearfix/index.html
index a6f7141b..c5bf3c17 100644
--- a/docs/4.0/utilities/clearfix/index.html
+++ b/docs/4.0/utilities/clearfix/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/close-icon/index.html b/docs/4.0/utilities/close-icon/index.html
index ca4a93bf..fb1eed56 100644
--- a/docs/4.0/utilities/close-icon/index.html
+++ b/docs/4.0/utilities/close-icon/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/colors/index.html b/docs/4.0/utilities/colors/index.html
index d2751ae4..03c13262 100644
--- a/docs/4.0/utilities/colors/index.html
+++ b/docs/4.0/utilities/colors/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/display/index.html b/docs/4.0/utilities/display/index.html
index 3a957fe1..7a74dcfa 100644
--- a/docs/4.0/utilities/display/index.html
+++ b/docs/4.0/utilities/display/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/embed/index.html b/docs/4.0/utilities/embed/index.html
index 1e4d2f33..5923ae15 100644
--- a/docs/4.0/utilities/embed/index.html
+++ b/docs/4.0/utilities/embed/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/flex/index.html b/docs/4.0/utilities/flex/index.html
index 9fb8d29f..8f3924c3 100644
--- a/docs/4.0/utilities/flex/index.html
+++ b/docs/4.0/utilities/flex/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/float/index.html b/docs/4.0/utilities/float/index.html
index d8f527c3..a8d7c345 100644
--- a/docs/4.0/utilities/float/index.html
+++ b/docs/4.0/utilities/float/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/image-replacement/index.html b/docs/4.0/utilities/image-replacement/index.html
index 3224ed44..eb56abab 100644
--- a/docs/4.0/utilities/image-replacement/index.html
+++ b/docs/4.0/utilities/image-replacement/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/index.html b/docs/4.0/utilities/index.html
index 5e69449c..a08d20db 100644
--- a/docs/4.0/utilities/index.html
+++ b/docs/4.0/utilities/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/docs/4.0/utilities/position/index.html b/docs/4.0/utilities/position/index.html
index 234e0dd3..f82a6da8 100644
--- a/docs/4.0/utilities/position/index.html
+++ b/docs/4.0/utilities/position/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/screenreaders/index.html b/docs/4.0/utilities/screenreaders/index.html
index 48ec0fbd..e1a2cf7e 100644
--- a/docs/4.0/utilities/screenreaders/index.html
+++ b/docs/4.0/utilities/screenreaders/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/sizing/index.html b/docs/4.0/utilities/sizing/index.html
index 513c6d7b..af556cfc 100644
--- a/docs/4.0/utilities/sizing/index.html
+++ b/docs/4.0/utilities/sizing/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/spacing/index.html b/docs/4.0/utilities/spacing/index.html
index 78beccdc..3cf86a00 100644
--- a/docs/4.0/utilities/spacing/index.html
+++ b/docs/4.0/utilities/spacing/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/text/index.html b/docs/4.0/utilities/text/index.html
index eaf5fab6..2b4c007d 100644
--- a/docs/4.0/utilities/text/index.html
+++ b/docs/4.0/utilities/text/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/vertical-align/index.html b/docs/4.0/utilities/vertical-align/index.html
index d1d0fd39..0d580194 100644
--- a/docs/4.0/utilities/vertical-align/index.html
+++ b/docs/4.0/utilities/vertical-align/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/4.0/utilities/visibility/index.html b/docs/4.0/utilities/visibility/index.html
index 04a754f1..44a3721b 100644
--- a/docs/4.0/utilities/visibility/index.html
+++ b/docs/4.0/utilities/visibility/index.html
@@ -41,18 +41,18 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/docs/index.html b/docs/index.html
index f10bd822..b8531bb4 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/examples/index.html b/examples/index.html
index 96feed17..d81cdf49 100644
--- a/examples/index.html
+++ b/examples/index.html
@@ -2,9 +2,9 @@
Redirecting…
-
-
+
+
Redirecting…
- Click here if you are not redirected.
-
+ Click here if you are not redirected.
+
diff --git a/index.html b/index.html
index 4f5b2528..ca4dcb59 100644
--- a/index.html
+++ b/index.html
@@ -40,16 +40,16 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/robots.txt b/robots.txt
index 4effb6b7..f2845144 100644
--- a/robots.txt
+++ b/robots.txt
@@ -1 +1 @@
-Sitemap: https://getbootstrap.com/sitemap.xml
+Sitemap: https://getbootstrap.com/bootstrap-material-design/sitemap.xml
diff --git a/sitemap.xml b/sitemap.xml
index 3c498178..ea1a5dea 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1,315 +1,315 @@
-https://getbootstrap.com/docs/4.0/getting-started/accessibility/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/accessibility/
-https://getbootstrap.com/docs/4.0/components/alerts/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/alerts/
-https://getbootstrap.com/docs/4.0/extend/approach/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/extend/approach/
-https://getbootstrap.com/docs/4.0/components/badge/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/badge/
-https://getbootstrap.com/docs/4.0/getting-started/best-practices/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/best-practices/
-https://getbootstrap.com/docs/4.0/utilities/borders/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/borders/
-https://getbootstrap.com/docs/4.0/about/brand/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/about/brand/
-https://getbootstrap.com/docs/4.0/components/breadcrumb/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/breadcrumb/
-https://getbootstrap.com/docs/4.0/browser-bugs/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/browser-bugs/
-https://getbootstrap.com/docs/4.0/getting-started/browsers-devices/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/browsers-devices/
-https://getbootstrap.com/docs/4.0/getting-started/build-tools/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/build-tools/
-https://getbootstrap.com/docs/4.0/components/button-group/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/button-group/
-https://getbootstrap.com/docs/4.0/material-design/buttons/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/buttons/
-https://getbootstrap.com/docs/4.0/components/buttons/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/buttons/
-https://getbootstrap.com/docs/4.0/components/card/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/card/
-https://getbootstrap.com/docs/4.0/components/carousel/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/carousel/
-https://getbootstrap.com/docs/4.0/utilities/clearfix/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/clearfix/
-https://getbootstrap.com/docs/4.0/utilities/close-icon/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/close-icon/
-https://getbootstrap.com/docs/4.0/content/code/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/content/code/
-https://getbootstrap.com/docs/4.0/material-design/collapse-inline/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/collapse-inline/
-https://getbootstrap.com/docs/4.0/components/collapse/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/collapse/
-https://getbootstrap.com/docs/4.0/utilities/colors/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/colors/
-https://getbootstrap.com/docs/4.0/getting-started/contents/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/contents/
-https://getbootstrap.com/docs/4.0/utilities/display/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/display/
-https://getbootstrap.com/docs/4.0/getting-started/download/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/download/
-https://getbootstrap.com/docs/4.0/material-design/drawers/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/drawers/
-https://getbootstrap.com/docs/4.0/components/dropdowns/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/dropdowns/
-https://getbootstrap.com/docs/4.0/utilities/embed/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/embed/
-https://getbootstrap.com/docs/4.0/material-design/extensions/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/extensions/
-https://getbootstrap.com/docs/4.0/content/figures/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/content/figures/
-https://getbootstrap.com/docs/4.0/utilities/flex/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/flex/
-https://getbootstrap.com/docs/4.0/utilities/float/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/float/
-https://getbootstrap.com/docs/4.0/material-design/forms/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/forms/
-https://getbootstrap.com/docs/4.0/components/forms/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/forms/
-https://getbootstrap.com/docs/4.0/layout/grid/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/layout/grid/
-https://getbootstrap.com/docs/4.0/about/history/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/about/history/
-https://getbootstrap.com/docs/4.0/extend/icons/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/extend/icons/
-https://getbootstrap.com/docs/4.0/utilities/image-replacement/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/image-replacement/
-https://getbootstrap.com/docs/4.0/content/images/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/content/images/
-https://getbootstrap.com/
+https://getbootstrap.com/bootstrap-material-design/
-https://getbootstrap.com/docs/4.0/extend/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/extend/
-https://getbootstrap.com/docs/4.0/examples/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/
-https://getbootstrap.com/docs/4.0/components/input-group/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/input-group/
-https://getbootstrap.com/docs/4.0/getting-started/introduction/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/introduction/
-https://getbootstrap.com/docs/4.0/getting-started/javascript/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/javascript/
-https://getbootstrap.com/docs/4.0/components/jumbotron/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/jumbotron/
-https://getbootstrap.com/docs/4.0/material-design/labels/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/labels/
-https://getbootstrap.com/docs/4.0/about/license/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/about/license/
-https://getbootstrap.com/docs/4.0/components/list-group/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/list-group/
-https://getbootstrap.com/docs/4.0/material-design/list-groups/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/list-groups/
-https://getbootstrap.com/docs/4.0/layout/media-object/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/layout/media-object/
-https://getbootstrap.com/docs/4.0/material-design/menus/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/menus/
-https://getbootstrap.com/docs/4.0/migration/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/migration/
-https://getbootstrap.com/docs/4.0/components/modal/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/modal/
-https://getbootstrap.com/docs/4.0/components/navbar/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/navbar/
-https://getbootstrap.com/docs/4.0/material-design/navs/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/navs/
-https://getbootstrap.com/docs/4.0/components/navs/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/navs/
-https://getbootstrap.com/docs/4.0/getting-started/options/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/options/
-https://getbootstrap.com/docs/4.0/layout/overview/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/layout/overview/
-https://getbootstrap.com/docs/4.0/components/pagination/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/pagination/
-https://getbootstrap.com/docs/4.0/components/popovers/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/popovers/
-https://getbootstrap.com/docs/4.0/utilities/position/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/position/
-https://getbootstrap.com/docs/4.0/components/progress/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/progress/
-https://getbootstrap.com/docs/4.0/content/reboot/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/content/reboot/
-https://getbootstrap.com/docs/4.0/utilities/screenreaders/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/screenreaders/
-https://getbootstrap.com/docs/4.0/components/scrollspy/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/scrollspy/
-https://getbootstrap.com/docs/4.0/material-design/selections/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/selections/
-https://getbootstrap.com/docs/4.0/utilities/sizing/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/sizing/
-https://getbootstrap.com/docs/4.0/material-design/snackbars/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/material-design/snackbars/
-https://getbootstrap.com/docs/4.0/utilities/spacing/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/spacing/
-https://getbootstrap.com/docs/4.0/content/tables/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/content/tables/
-https://getbootstrap.com/docs/4.0/about/team/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/about/team/
-https://getbootstrap.com/docs/4.0/utilities/text/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/text/
-https://getbootstrap.com/docs/4.0/components/tooltips/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/components/tooltips/
-https://getbootstrap.com/docs/4.0/about/translations/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/about/translations/
-https://getbootstrap.com/docs/4.0/content/typography/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/content/typography/
-https://getbootstrap.com/docs/4.0/layout/utilities-for-layout/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/layout/utilities-for-layout/
-https://getbootstrap.com/docs/4.0/utilities/vertical-align/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/vertical-align/
-https://getbootstrap.com/docs/4.0/utilities/visibility/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/utilities/visibility/
-https://getbootstrap.com/docs/4.0/getting-started/webpack/
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/getting-started/webpack/
-https://getbootstrap.com/docs/4.0/examples/album/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/album/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/blog/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/blog/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/carousel/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/carousel/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/cover/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/cover/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/dashboard/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/dashboard/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/grid/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/grid/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/jumbotron/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/jumbotron/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/justified-nav/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/justified-nav/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/narrow-jumbotron/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/narrow-jumbotron/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/navbar-top-fixed/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/navbar-top-fixed/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/navbar-top/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/navbar-top/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/navbars/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/navbars/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/offcanvas/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/offcanvas/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/signin/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/signin/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/starter-template/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/starter-template/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/sticky-footer-navbar/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/sticky-footer-navbar/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/sticky-footer/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/sticky-footer/index.html
+2017-08-31T14:46:07+02:00
-https://getbootstrap.com/docs/4.0/examples/tooltip-viewport/index.html
-2017-08-31T14:36:16+02:00
+https://getbootstrap.com/bootstrap-material-design/docs/4.0/examples/tooltip-viewport/index.html
+2017-08-31T14:46:07+02:00