mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Update URLs in config to what I think they need to be; add theme CDN url
This commit is contained in:
parent
c729f16282
commit
d13c4e5e5b
2 changed files with 9 additions and 5 deletions
|
@ -12,8 +12,8 @@ port: 9001
|
||||||
|
|
||||||
# Custom vars
|
# Custom vars
|
||||||
repo: https://github.com/twbs/bootstrap
|
repo: https://github.com/twbs/bootstrap
|
||||||
download: https://github.com/twbs/bootstrap/archive/3.0.0-wip.zip
|
download: https://github.com/twbs/bootstrap/archive/v3.0.0.zip
|
||||||
download_dist: http://getbootstrap.com/bs-v3.0.0-rc.2-dist.zip
|
download_dist: https://github.com/twbs/bootstrap/releases/download/v3.0.0/bootstrap-3.0.0-dist.zip
|
||||||
|
|
||||||
glyphicons: http://glyphicons.getbootstrap.com
|
glyphicons: http://glyphicons.getbootstrap.com
|
||||||
glyphicons_repo: https://github.com/twbs/bootstrap-glyphicons
|
glyphicons_repo: https://github.com/twbs/bootstrap-glyphicons
|
||||||
|
@ -21,5 +21,6 @@ glyphicons_repo: https://github.com/twbs/bootstrap-glyphicons
|
||||||
blog: http://blog.getbootstrap.com
|
blog: http://blog.getbootstrap.com
|
||||||
expo: http://expo.getbootstrap.com
|
expo: http://expo.getbootstrap.com
|
||||||
|
|
||||||
cdn_css: //netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/css/bootstrap.min.css
|
cdn_css: //netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css
|
||||||
cdn_js: //netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/js/bootstrap.min.js
|
cdn_theme_css: //netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css
|
||||||
|
cdn_js: //netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js
|
||||||
|
|
|
@ -16,7 +16,7 @@ base_url: "../"
|
||||||
<p class="lead">There are a few easy ways to quickly get started with Bootstrap, each one appealing to a different skill level and use case. Read through to see what suits your particular needs.</p>
|
<p class="lead">There are a few easy ways to quickly get started with Bootstrap, each one appealing to a different skill level and use case. Read through to see what suits your particular needs.</p>
|
||||||
|
|
||||||
<h3>Download compiled CSS and JS</h3>
|
<h3>Download compiled CSS and JS</h3>
|
||||||
<p class="lead">The fastest way to get started is to get the compiled and minified versions of our CSS and JavaScript. No documentation or original source files are included.</p>
|
<p class="lead">The fastest way to get Bootstrap is to download the compiled and minified versions of our CSS and JavaScript. No documentation or original source files are included.</p>
|
||||||
<p><a class="btn btn-lg btn-primary" href="{{ site.download_dist }}" onclick="_gaq.push(['_trackEvent', 'Getting started', 'Download', 'Download compiled']);">Download Bootstrap</a></p>
|
<p><a class="btn btn-lg btn-primary" href="{{ site.download_dist }}" onclick="_gaq.push(['_trackEvent', 'Getting started', 'Download', 'Download compiled']);">Download Bootstrap</a></p>
|
||||||
|
|
||||||
<h3 id="download-additional">Additional downloads</h3>
|
<h3 id="download-additional">Additional downloads</h3>
|
||||||
|
@ -42,6 +42,9 @@ base_url: "../"
|
||||||
<!-- Latest compiled and minified CSS -->
|
<!-- Latest compiled and minified CSS -->
|
||||||
<link rel="stylesheet" href="{{ site.cdn_css }}">
|
<link rel="stylesheet" href="{{ site.cdn_css }}">
|
||||||
|
|
||||||
|
<!-- Optional theme -->
|
||||||
|
<link rel="stylesheet" href="{{ site.cdn_theme_css }}">
|
||||||
|
|
||||||
<!-- Latest compiled and minified JavaScript -->
|
<!-- Latest compiled and minified JavaScript -->
|
||||||
<script src="{{ site.cdn_js }}"></script>
|
<script src="{{ site.cdn_js }}"></script>
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
Loading…
Reference in a new issue