diff options
author | cglatot <[email protected]> | 2020-07-07 15:03:43 +0100 |
---|---|---|
committer | cglatot <[email protected]> | 2020-07-07 15:03:43 +0100 |
commit | 763591e547ce3230c3e2dc0a1e5cb4e0e622653a (patch) | |
tree | fba54c139e60e9cde1bc9fec5b060281fb4e425a /index.html | |
parent | 48fb90fff8513e0be16268aa048f97bdda951aad (diff) | |
download | pasta-763591e547ce3230c3e2dc0a1e5cb4e0e622653a.tar.gz pasta-763591e547ce3230c3e2dc0a1e5cb4e0e622653a.zip |
Add support and changes for Movies
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"> |