Skip to content
This repository has been archived by the owner on Nov 1, 2019. It is now read-only.

feat: add two movies to the films page #351

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 100 additions & 3 deletions pages/films.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,24 @@ <h1 class="title">Christmas Films</h1>
aria-controls="profile">
El Camino Christmas
</a>
<a
class="list-group-item list-group-item-action"
id="list-profile-list"
data-toggle="list"
href="#national-lampoons-christmas-vacation"
role="tab"
aria-controls="profile">
National Lampoon's Christmas Vacation
</a>
<a
class="list-group-item list-group-item-action"
id="list-profile-list"
data-toggle="list"
href="#christmas-with-the-kranks"
role="tab"
aria-controls="profile">
Christmas with the Kranks
</a>
</div>
</div>
<!-- :::END OF MENU TO FILTER FILMS :::-->
Expand Down Expand Up @@ -881,6 +899,7 @@ <h5 class="card-title">Elf</h5>
</div>
</div>
<!-- ::: Elf CARD End :::-->

<!-- ::: Jingle All the Way Card :::-->
<div
class="tab-pane fade"
Expand Down Expand Up @@ -925,6 +944,7 @@ <h5 class="card-title">Jingle All the Way</h5>
</div>
</div>
<!-- ::: Jingle All the Way Card End :::-->

<!-- ::: The Polar Express Card:::-->
<div
class="tab-pane fade"
Expand Down Expand Up @@ -969,6 +989,7 @@ <h5 class="card-title">The Polar Express</h5>
</div>
</div>
<!-- ::: The Polar Express Card End :::-->

<!-- White Christmas -->
<div
class="tab-pane fade"
Expand Down Expand Up @@ -1007,6 +1028,7 @@ <h5 class="card-title">White Christmas</h5>
</div>
</div>
</div>

<!-- Cool Runnings -->
<div
class="tab-pane fade"
Expand Down Expand Up @@ -1045,8 +1067,7 @@ <h5 class="card-title">Cool Runnings</h5>
</div>
</div>
</div>
<<<<<<< HEAD
=======

<!-- Rudolph The Red-Nosed Reindeer -->
<div
class="tab-pane fade"
Expand Down Expand Up @@ -1083,6 +1104,7 @@ <h5 class="card-title">Rudolph The Red-Nosed Reindeer (1964)</h5>
</div>
</div>
</div> <!-- Rudolph The Red-Nosed Reindeer ends here -->

<!-- The Night Before -->
<div
class="tab-pane fade"
Expand Down Expand Up @@ -1194,7 +1216,82 @@ <h5 class="card-title">El Camino Christmas</h5>
</div>
</div>
</div> <!-- El Camino Christmas ends here -->
>>>>>>> upstream/master

<!-- National Lampoon's Christmas Start -->
<div
class="tab-pane fade"
id="national-lampoons-christmas-vacation"
role="tabpanel"
aria-labelledby="national-lampoons-christmas-vacation-list">
<div class="card mb-3" style="max-width: 670px;">
<div class="row no-gutters">
<div class="col-md-12 col-lg-4">
<img
data-src="https://m.media-amazon.com/images/M/MV5BMGZkMWQ2MzMtYTkxYS00OThmLWI0ZTQtNmY0ZTkyY2E4MjliXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX182_CR0,0,182,268_AL_.jpg"
class="card-img"
alt="National Lampoon's Christmas Vacation"
loading="lazy"/>
</div>
<div class="col-md-12 col-lg-8">
<div class="card-body">
<h5 class="card-title">National Lampoon's Christmas Vacation</h5>
<p class="card-text">
As the holidays approach, Clark Griswold (Chevy Chase) wants to have a perfect family Christmas, so he pesters his wife, Ellen (Beverly D'Angelo), and children, as he tries to make sure everything is in line, including the tree and house decorations. However, things go awry quickly. His hick cousin, Eddie (Randy Quaid), and his family show up unplanned and start living in their camper on the Griswold property. Even worse, Clark's employers renege on the holiday bonus he needs.
</p>
<p class="card-text">
<small class="text-muted">
<button>
<a
href="https://www.imdb.com/title/tt0097958/"
target="__blank"
>Watch Now</a
></button>
</small>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- National Lampoon's Christmas End -->

<!-- Christmas with the Kranks Start -->
<div
class="tab-pane fade"
id="christmas-with-the-kranks"
role="tabpanel"
aria-labelledby="christmas-with-the-kranks-list">
<div class="card mb-3" style="max-width: 670px;">
<div class="row no-gutters">
<div class="col-md-12 col-lg-4">
<img
data-src="https://m.media-amazon.com/images/M/MV5BMTQxMDMxODEwNF5BMl5BanBnXkFtZTYwNzM4OTc2._V1_.jpg"
class="card-img"
alt="Christmas with the Kranks"
loading="lazy"/>
</div>
<div class="col-md-12 col-lg-8">
<div class="card-body">
<h5 class="card-title">Christmas with the Kranks</h5>
<p class="card-text">
Finally alone for the holidays, Luther (Tim Allen) and Nora Krank (Jamie Lee Curtis) plan to eschew the Christmas traditions and take a cruise in the Caribbean instead. This doesn't sit well with their Christmas-obsessed neighbors Vic Frohmeyer (Dan Aykroyd) and Walt Scheel (M. Emmet Walsh), who are determined to win the annual "best decorated street" competition, and the Kranks soon find themselves social outcasts because of their lack of Christmas spirit.
</p>
<p class="card-text">
<small class="text-muted">
<button>
<a
href="https://www.imdb.com/title/tt0388419/"
target="__blank"
>Watch Now</a
></button>
</small>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Christmas with the Kranks End -->
</div>
</div>
</div>
Expand Down