Adding a footer section
Let’s complete the website structure with the inclusion of a footer.
Updating the base template
In /moviesstore/templates/base.html
, add the following in bold:
    …     <!-- Footer -->     <section class="p-3 ms-footer d-none d-md-block">       <div class="container">         <div class="row mt-3 text-white">           <div class="col-md-6 col-lg-6 col-xl-6                mx-auto mb-4">             <b>MOVIES STORE</b>             <hr />        &...