|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <!-- Bootstrap CSS and Font Awesome CSS --> |
| 7 | + <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"> |
| 8 | + <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"> |
| 9 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> |
| 10 | + <!-- Your stylesheet --> |
| 11 | + <link href="/static/styles.css" rel="stylesheet"> |
| 12 | + |
| 13 | + <title>shop {% block title %}{% endblock %}</title> |
| 14 | + |
| 15 | + </head> |
| 16 | + <body> |
| 17 | + |
| 18 | + {% if get_flashed_messages() %} |
| 19 | + <!-- Flash messages --> |
| 20 | + <div id="header"> |
| 21 | + <div class="alert alert-primary mb-0 text-center" role="alert"> |
| 22 | + {{ get_flashed_messages() | join(" ") }} |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + {% endif %} |
| 26 | + |
| 27 | +<!-- Top Navigation Bar --> |
| 28 | +<div class="bar"> |
| 29 | + <div class="navbar" id="navbar"> |
| 30 | + <!-- Navigation items for logged-in users --> |
| 31 | + {% if session["user_id"] %} |
| 32 | + <ul > |
| 33 | + <li> |
| 34 | + <a class="button-52" href="/">Home</a> |
| 35 | + </li> |
| 36 | + |
| 37 | + <li> |
| 38 | + <a class="button-52" href="/products">Products</a> |
| 39 | + </li> |
| 40 | + <li> |
| 41 | + <a class="button-52" href="/profile">Profile</a> |
| 42 | + </li> |
| 43 | + <li> |
| 44 | + <a class="button-52" href="/logout">Log Out</a> |
| 45 | + </li> |
| 46 | + <li> |
| 47 | + <a c href="/cart"><i class="fa-solid fa-cart-shopping fa-beat" style="color: #1f1f1f;"></i></a> |
| 48 | + </li> |
| 49 | + </ul> |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | + <!-- Navigation items for non-logged-in users --> |
| 54 | + {% else %} |
| 55 | + <ul> |
| 56 | + <li> |
| 57 | + <a class="button-52" href="/">Home</a> |
| 58 | + </li> |
| 59 | + |
| 60 | + <li> |
| 61 | + <a class="button-52" href="/products">Products</a> |
| 62 | + </li> |
| 63 | + |
| 64 | + <li> |
| 65 | + <a class="button-52" href="/login">Log In</a> |
| 66 | + </li> |
| 67 | + |
| 68 | + </ul> |
| 69 | + {% endif %} |
| 70 | + |
| 71 | + </div> |
| 72 | + |
| 73 | + </div> |
| 74 | + |
| 75 | + <!-- Hero Section --> |
| 76 | + <div id="hero"></div> |
| 77 | + {% if request.path == '/' %} |
| 78 | + <!--Featured functions section--> |
| 79 | + <div> |
| 80 | + |
| 81 | + |
| 82 | + |
| 83 | + |
| 84 | + {% endif %} |
| 85 | + |
| 86 | + <!-- Main Content Section --> |
| 87 | + <div class="main"> {% block main %}{% endblock %} </div> |
| 88 | + |
| 89 | + <!-- Footer Section --> |
| 90 | + <footer class="section-p1"> |
| 91 | + |
| 92 | + <!-- Copyright information --> |
| 93 | + <div class="copyright"> ©2024 </div> |
| 94 | + </footer> |
| 95 | + </body> |
| 96 | +</html> |
0 commit comments