forked from hero/www_hero_project
15 lines
267 B
HTML
15 lines
267 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<main class="pt-16">
|
||
|
|
||
|
<div class="flex flex-col md:flex-row">
|
||
|
{% include "partials/productPosts.html" %}
|
||
|
{% include "partials/productSidebar.html" %}
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
{% endblock content %}
|
||
|
|