diff options
| author | XhmikosR <[email protected]> | 2017-12-31 02:11:59 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-12-31 02:11:59 +0200 |
| commit | e0e9bc8b5894c31557bfe7bc013707c887190c6b (patch) | |
| tree | f9e86512ea031599d9bcb3bbc977c6f097deadb6 /docs | |
| parent | bf0e753517ab83a148088189b136375f21cb684d (diff) | |
| download | bootstrap-e0e9bc8b5894c31557bfe7bc013707c887190c6b.tar.xz bootstrap-e0e9bc8b5894c31557bfe7bc013707c887190c6b.zip | |
Move inline JS outside of HTML. (#25140)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/4.0/examples/album/index.html | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/docs/4.0/examples/album/index.html b/docs/4.0/examples/album/index.html index de6ff5e8d..6e5fc6173 100644 --- a/docs/4.0/examples/album/index.html +++ b/docs/4.0/examples/album/index.html @@ -65,41 +65,41 @@ <div class="row"> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> <div class="card"> - <img data-src="holder.js/100px280?theme=thumb" alt="Card image cap"> + <img data-src="holder.js/100px280?theme=thumb&bg=55595c&fg=eceeef&text=Thumbnail" alt="Card image cap"> <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> </div> </div> @@ -127,12 +127,5 @@ <script src="../../../../assets/js/vendor/popper.min.js"></script> <script src="../../../../dist/js/bootstrap.min.js"></script> <script src="../../../../assets/js/vendor/holder.min.js"></script> - <script> - Holder.addTheme('thumb', { - bg: '#55595c', - fg: '#eceeef', - text: 'Thumbnail' - }); - </script> </body> </html> |
