2012-07-12 13:11:12 +00:00
|
|
|
{% extends "html/page.html" %}
|
|
|
|
|
|
|
|
{% block javascript %}
|
|
|
|
{% include "js/products.js" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block css %}
|
|
|
|
{% include "css/products.css" %}
|
|
|
|
{% endblock %}
|
2012-06-26 13:24:10 +00:00
|
|
|
|
2012-07-09 14:32:52 +00:00
|
|
|
{% block title %}
|
|
|
|
Products
|
|
|
|
{% endblock %}
|
2012-06-26 13:24:10 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="layout-wrapper layout-wrapper-background">
|
|
|
|
<div class="web-content" id="content-products">
|
|
|
|
|
|
|
|
<div class="layout-main-section">
|
|
|
|
<h1 class="products-category"></h1>
|
2012-06-27 06:36:45 +00:00
|
|
|
<div class="products-search" style="margin-bottom: 15px;">
|
|
|
|
<input name="products-search" />
|
|
|
|
<button class="btn" style="margin-left: 7px">Search</button>
|
|
|
|
</div>
|
|
|
|
<div id="products-list">
|
2012-06-26 13:24:10 +00:00
|
|
|
<!-- product list will be generated dynamically -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="layout-side-section">
|
2012-07-09 10:26:12 +00:00
|
|
|
<h3>Categories</h3>
|
2012-06-26 13:24:10 +00:00
|
|
|
<div class="more-categories"></div>
|
|
|
|
</div>
|
|
|
|
<div style="clear: both"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|