Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div>
- <ul class="nav nav-tabs" role="tablist">
- <?php
- foreach ($data['chaines'] as $k) {
- ?>
- <li role="presentation" <?php if ($k == $data['chaines']['0']) { echo "class='active'"; } ?>><a href="#<?= $k; ?>" aria-controls="<?= $k; ?>" role="tab" data-toggle="tab"><i class="fa fa-twitch"></i>
- <?= $k; ?></a></li>
- <?php
- }
- ?>
- </ul>
- <div class="tab-content">
- <?php
- foreach ($data['chaines'] as $k) {
- ?>
- <div role="tabpanel" class="tab-pane <?php if (current($k) == $k[0]) { echo "class='active'"; } ?>" id="<?= $k; ?>">
- <a href="http://twitch.tv/<?= $k; ?>" target="_blank">
- <img src=" http://streambadge.com/twitch/<?php echo $data['urlparams']; ?>/<?= $k; ?>.png" width="300" height="64" alt="Avatar Streambadge" /></a>
- </div>
- <?php
- }
- ?>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement