Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Our Wooden Nameplates</title> | |
| <link rel="stylesheet" href="/static/styles.css"> | |
| </head> | |
| <body> | |
| <header> | |
| <nav> | |
| <ul> | |
| <li><a href="/">Home</a></li> | |
| <li><a href="/products">Products</a></li> | |
| </ul> | |
| </nav> | |
| </header> | |
| <main> | |
| <div class="container"> | |
| <h1>Our Wooden Nameplate Collection</h1> | |
| <div class="product-list"> | |
| {% for product in products %} | |
| <div class="product-card"> | |
| <img src="{{ product.image_link }}" alt="{{ product.name }}"> | |
| <div class="product-card-content"> | |
| <h2>{{ product.name }}</h2> | |
| <p class="price">{{ product.price }}</p> | |
| <a href="/products/{{ product.id }}" class="cta-button">View Details</a> | |
| </div> | |
| </div> | |
| {% endfor %} | |
| </div> | |
| </div> | |
| </main> | |
| </body> | |
| </html> | |