Files
santeh-ray/templates/catalog/_fragments/item-list.html
Azimkin 921cea9044
All checks were successful
Build and Push Docker Image / build (push) Successful in 24s
feat: add sidebar and item list to catalog page, enable DEBUG mode for development
- Created `side-bar.html` and `item-list.html` fragments for catalog page layout
- Updated `catalog/index.html` to include sidebar and item list templates
- Added styles for catalog layout in `catalog.css`
- Enabled `DEBUG=True` in settings for local development
- Adjusted CSS in shipping and services for consistent spacing
2026-04-07 23:09:19 +02:00

6 lines
100 B
HTML

<main class="item-list">
{% for item in items %}
<h1>item</h1>
{% endfor %}
</main>