16 lines
356 B
HTML
16 lines
356 B
HTML
{% include 'components/header.html' %}
|
|
<link rel="stylesheet" href="/static/css/products.css">
|
|
|
|
<body class="products-page">
|
|
{% include 'components/nav.html' %}
|
|
<main>
|
|
|
|
[[products/body]]
|
|
|
|
</main>
|
|
{% include 'components/footer.html' %}
|
|
{% include 'components/login.html' %}
|
|
{% include 'components/signup.html' %}
|
|
</body>
|
|
</html>
|