diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -391,7 +391,7 @@ <!-- SHOWS TABLE --> <div class="row mt-4"> <div class="col"> - <h3>TV Series</h3> + <h3 id="libraryTypeTitle">TV Series</h3> <div class="table-responsive"> <table id="tvShowsTable" class="table table-hover mt-3"> <thead> @@ -411,7 +411,7 @@ </div> <div class="tab-pane fade" id="episodes" role="tabpanel" aria-labelledby="episodes-tab"> <!-- SEASONS TABLE --> - <div class="row mt-3"> + <div id="seasonsTableContainer" class="row mt-3"> <div class="col"> <h3>Seasons</h3> <div class="table-responsive"> @@ -431,7 +431,7 @@ <!-- / SHOWS TABLE --> <!-- EPISODES TABLE --> - <div class="row mt-4"> + <div id="episodesTableContainer" class="row mt-4"> <div class="col"> <h3>Episodes</h3> <div class="table-responsive"> @@ -451,7 +451,7 @@ <!-- / EPISODES TABLE --> <!-- SWITCH TOGGLE --> - <div class="row mt-4"> + <div id="switchToggleContainer" class="row mt-4"> <div class="col text-center"> <div id="episodeOrSeriesBtns" class="btn-group btn-group-toggle" data-toggle="buttons"> <label class="btn btn-secondary active"> @@ -471,6 +471,14 @@ </div> <!-- / SWITCH TOGGLE --> + <!-- MOVIE NAME --> + <div id="movieNamePlaceholder" class="row mt-4"> + <div class="col"> + <h2>Baby Driver</h2> + </div> + </div> + <!-- / MOVIE NAME --> + <!-- STREAMS TABLES --> <div class="row mt-4"> <div class="col"> |