Reputation: 47625
I saw someone referencing:
http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css
But what I'd like to do is load "the latest" of version 1, similar to how Google cdn includes all the versions of a library along with "the latest" one.
Q: Is there something that I can load like:
To get the latest version 1 of twitter bootstrap?
Upvotes: 2
Views: 1982
Reputation: 709
I don't think there is a reason to do so. You always should test a new version to make sure it doesn't break your current application.
Upvotes: 1
Reputation: 10188
AFAIK there isn't a pre-compiled version of the bootstrap css available on github, but I suppose you could reference http://twitter.github.com/bootstrap/assets/css/bootstrap.css, which is the one used by their site (but obviously this is not guaranteed to work indefinitely)
Upvotes: 1