Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/_plugins/bridge.rb3
-rw-r--r--docs/getting-started/download.md10
2 files changed, 12 insertions, 1 deletions
diff --git a/docs/_plugins/bridge.rb b/docs/_plugins/bridge.rb
index f2e606383f..69a13fbbbd 100644
--- a/docs/_plugins/bridge.rb
+++ b/docs/_plugins/bridge.rb
@@ -3,7 +3,8 @@ require 'yaml'
module Bridge
class Generator < Jekyll::Generator
def generate(site)
- site.data["configBridge"] = YAML.load_file("./grunt/configBridge.json")
+ path = File.join(site.source, "../grunt/configBridge.json")
+ site.data["configBridge"] = YAML.load_file(path)
end
end
end
diff --git a/docs/getting-started/download.md b/docs/getting-started/download.md
index aa9834e478..4e83b9994e 100644
--- a/docs/getting-started/download.md
+++ b/docs/getting-started/download.md
@@ -69,6 +69,16 @@ You can also install and manage Bootstrap's Sass and JavaScript using [Composer]
$ composer require twbs/bootstrap
{% endhighlight %}
+### NuGet
+
+If you develop in .NET, you can also install and manage Bootstrap's [CSS](https://www.nuget.org/packages/bootstrap/) or [Sass](https://www.nuget.org/packages/bootstrap.sass/) and JavaScript using [NuGet](https://www.nuget.org):
+
+{% highlight powershell %}
+PM> Install-Package bootstrap -Pre
+PM> Install-Package bootstrap.sass -Pre
+{% endhighlight %}
+
+The `-Pre` is required until Bootstrap v4 has a stable release.
## Custom builds