Created
November 15, 2016 03:26
-
-
Save nmfzone/d2409b4fe504c34beee0b173ac81a91b to your computer and use it in GitHub Desktop.
Panel with Nav Tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="panel with-nav-tabs panel-primary"> | |
| <div class="panel-heading"> | |
| <ul class="nav nav-tabs"> | |
| <li class="active"><a href="#tab1" data-toggle="tab">A</a></li> | |
| <li><a href="#tab2" data-toggle="tab">B</a></li> | |
| <li><a href="#tab3" data-toggle="tab">C</a></li> | |
| </ul> | |
| </div> | |
| <div class="panel-body"> | |
| <div class="tab-content"> | |
| <div class="tab-pane fade in active" id="tab1"> | |
| <?php include('A.php'); ?> | |
| </div> | |
| <div class="tab-pane fade" id="tab2"> | |
| <?php include('B.php'); ?> | |
| </div> | |
| <div class="tab-pane fade" id="tab3"> | |
| <?php include('C.php'); ?> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment