| 1 | {% extends "base.html" %} |
| 2 | {% block title %}Movie - WebApp{% endblock %} |
| 3 | {% block content %} |
| 4 | <h1 class="home_title">Welcome to the Movie Web App</h1> |
| 5 | <section class="content-container"> |
| 6 | <h2 class="content-title">Features</h2> |
| 7 | <img src="/static/homepic.jpg" alt="Movie Image" class="content-image"> |
| 8 | |
| 9 | <p class="content-paragraph"> |
| 10 | This Movie Web App has the following features: |
| 11 | </p> |
| 12 | <ul class="content-paragraph"> |
| 13 | <li>View all <a href="/movies">movies</a></li> |
| 14 | <li>View a single movie</li> |
| 15 | <li>View all <a href="/users">users</a></li> |
| 16 | <li>View a single user</li> |
| 17 | <li>View all user's movies list</li> |
| 18 | <li>View a single user's movie</li> |
| 19 | </ul> |
| 20 | </section> |
| 21 | |
| 22 | |
| 23 | {% endblock %} |