diff options
| author | Mark Otto <[email protected]> | 2013-05-08 22:07:28 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-05-08 22:07:28 -0700 |
| commit | 07aed1abc364cc5f493136eba34890b3670554d3 (patch) | |
| tree | 0a476ba450b0cc7ff4783562cee88e7209624079 /docs/_includes | |
| parent | edb733ebc7db2d76bdac2611cbd83c5ae36f4fee (diff) | |
| download | bootstrap-07aed1abc364cc5f493136eba34890b3670554d3.tar.xz bootstrap-07aed1abc364cc5f493136eba34890b3670554d3.zip | |
move social buttons to separate include
Diffstat (limited to 'docs/_includes')
| -rw-r--r-- | docs/_includes/colophon.html | 18 | ||||
| -rw-r--r-- | docs/_includes/social-buttons.html | 16 |
2 files changed, 17 insertions, 17 deletions
diff --git a/docs/_includes/colophon.html b/docs/_includes/colophon.html index 5018113b4..de2c0f019 100644 --- a/docs/_includes/colophon.html +++ b/docs/_includes/colophon.html @@ -3,23 +3,7 @@ <footer class="bs-docs-footer"> <div class="bs-docs-container"> - <div class="bs-docs-social"> - <ul class="bs-docs-social-buttons"> - <li> - <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twitter&repo=bootstrap&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe> - </li> - <li> - <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twitter&repo=bootstrap&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px"></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> - </li> - <li class="tweet-btn"> - <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://twitter.github.com/bootstrap/" data-count="horizontal" data-via="twbootstrap" data-related="mdo:Creator of Twitter Bootstrap">Tweet</a> - </li> - </ul> - </div> - + {% include social-buttons.html %} <p>Designed and built with all the love in the world by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p> <p>Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p> diff --git a/docs/_includes/social-buttons.html b/docs/_includes/social-buttons.html new file mode 100644 index 000000000..68d5fc40e --- /dev/null +++ b/docs/_includes/social-buttons.html @@ -0,0 +1,16 @@ +<div class="bs-docs-social"> + <ul class="bs-docs-social-buttons"> + <li> + <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twitter&repo=bootstrap&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe> + </li> + <li> + <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twitter&repo=bootstrap&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px"></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> + </li> + <li class="tweet-btn"> + <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://twitter.github.com/bootstrap/" data-count="horizontal" data-via="twbootstrap" data-related="mdo:Creator of Twitter Bootstrap">Tweet</a> + </li> + </ul> +</div> |
