diff options
| author | Chris Rebert <[email protected]> | 2013-08-12 14:40:07 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-08-12 14:40:07 -0700 |
| commit | 7c7c447d858d6d902848bfb602bf70d898813542 (patch) | |
| tree | 1e5ec53e8bf6b5fb12579175f7253bc27b0cbba6 | |
| parent | e245bffe8c951a0bba2bb045fb6bbe674d471693 (diff) | |
| parent | 7f8f1ca65e6d908da5dce4536c3d4d5f055dc6a7 (diff) | |
| download | bootstrap-7c7c447d858d6d902848bfb602bf70d898813542.tar.xz bootstrap-7c7c447d858d6d902848bfb602bf70d898813542.zip | |
Merge pull request #9394 from twbs/valid-github-btn-html
_includes/social-buttons.html: escape ampersands in URLs so HTML validates
| -rw-r--r-- | _includes/social-buttons.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/social-buttons.html b/_includes/social-buttons.html index b52cac2f6..cd4d921ea 100644 --- a/_includes/social-buttons.html +++ b/_includes/social-buttons.html @@ -1,10 +1,10 @@ <div class="bs-social"> <ul class="bs-social-buttons"> <li> - <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px" title="Star on GitHub"></iframe> + <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px" title="Star on GitHub"></iframe> </li> <li> - <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px" title="Fork on GitHub"></iframe> + <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px" title="Fork on GitHub"></iframe> </li> <li class="follow-btn"> <a href="https://twitter.com/twbootstrap" class="twitter-follow-button" data-link-color="#0069D6" data-show-count="true">Follow @twbootstrap</a> |
