[minor] [website] fix in container
This commit is contained in:
parent
e915259124
commit
0c8fd3408c
@ -1,7 +1,7 @@
|
|||||||
{% extends base_template %}
|
{% extends base_template %}
|
||||||
|
|
||||||
{% block content -%}
|
{% block content -%}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="index">Home</a></li>
|
<li><a href="index">Home</a></li>
|
||||||
<li class="active"><i class="{{ icon }} icon-fixed-width"></i> {{ title }}</li>
|
<li class="active"><i class="{{ icon }} icon-fixed-width"></i> {{ title }}</li>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
{% set title="Shopping Cart" %}
|
{% set title="Shopping Cart" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<h2><i class="icon-shopping-cart"></i> {{ title }}</h2>
|
<h2><i class="icon-shopping-cart"></i> {{ title }}</h2>
|
||||||
<div class="progress progress-striped active">
|
<div class="progress progress-striped active">
|
||||||
<div class="progress-bar progress-bar-info" style="width: 100%;"></div>
|
<div class="progress-bar progress-bar-info" style="width: 100%;"></div>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% set title="My Profile" %}
|
{% set title="My Profile" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="index">Home</a></li>
|
<li><a href="index">Home</a></li>
|
||||||
<li class="active"><i class="icon-user icon-fixed-width"></i> My Profile</li>
|
<li class="active"><i class="icon-user icon-fixed-width"></i> My Profile</li>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% set title=doc.name %}
|
{% set title=doc.name %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="index">Home</a></li>
|
<li><a href="index">Home</a></li>
|
||||||
<li><a href="{{ parent_link }}">{{ parent_title }}</a></li>
|
<li><a href="{{ parent_link }}">{{ parent_title }}</a></li>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'app/stock/doctype/item/templates/includes/product_search_box.html' %}
|
{% include 'app/stock/doctype/item/templates/includes/product_search_box.html' %}
|
||||||
{% include 'app/stock/doctype/item/templates/includes/product_breadcrumbs.html' %}
|
{% include 'app/stock/doctype/item/templates/includes/product_breadcrumbs.html' %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
{% if slideshow %}<!-- slideshow -->
|
{% if slideshow %}<!-- slideshow -->
|
||||||
{% include "lib/website/doctype/website_slideshow/templates/includes/slideshow.html" %}
|
{% include "lib/website/doctype/website_slideshow/templates/includes/slideshow.html" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<h3>{{ name }}</h3>
|
<h3>{{ name }}</h3>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
{% if sub_groups %}
|
{% if sub_groups %}
|
||||||
<hr />
|
<hr />
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{% extends base_template %}
|
{% extends base_template %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12" itemscope itemtype="http://schema.org/Organization">
|
<div class="container content" itemscope itemtype="http://schema.org/Organization">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
{% if logo -%}
|
{% if logo -%}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% set title="Partners" %}
|
{% set title="Partners" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<h2 id="blog-title">{{ title }}</h2>
|
<h2 id="blog-title">{{ title }}</h2>
|
||||||
<hr>
|
<hr>
|
||||||
{% for partner_info in partners %}
|
{% for partner_info in partners %}
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'app/stock/doctype/item/templates/includes/product_search_box.html' %}
|
{% include 'app/stock/doctype/item/templates/includes/product_search_box.html' %}
|
||||||
{% include 'app/stock/doctype/item/templates/includes/product_breadcrumbs.html' %}
|
{% include 'app/stock/doctype/item/templates/includes/product_breadcrumbs.html' %}
|
||||||
<div class="col-md-12 product-page-content" itemscope itemtype="http://schema.org/Product">
|
<div class="container content product-page-content" itemscope itemtype="http://schema.org/Product">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
{% if slideshow %}
|
{% if slideshow %}
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
{% if obj.parent_groups and (obj.parent_groups|length) > 1 %}
|
{% if obj.parent_groups and (obj.parent_groups|length) > 1 %}
|
||||||
<div class="col-md-12">
|
<div class="container">
|
||||||
<div class="clearfix">
|
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
{% for ig in obj.parent_groups[:-1] %}
|
{% for ig in obj.parent_groups[:-1] %}
|
||||||
<li><a href="{{ ig.page_name }}.html">{{ ig.name }}</a></li>
|
<li><a href="{{ ig.page_name }}.html">{{ ig.name }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<li class="active">{{ obj.parent_groups[-1].name }}</li>
|
<li class="active">{{ obj.parent_groups[-1].name }}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
@ -1,5 +1,5 @@
|
|||||||
<!-- TODO product listing -->
|
<!-- TODO product listing -->
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<div style="height: 120px; overflow: hidden;">
|
<div style="height: 120px; overflow: hidden;">
|
||||||
<a href="{{ page_name }}">
|
<a href="{{ page_name }}">
|
||||||
{%- if website_image -%}
|
{%- if website_image -%}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<div class="row clearfix">
|
<div class="container" style="margin-bottom: 7px;">
|
||||||
<div class="pull-right" style="margin-top: 15px; margin-bottom: 15px;">
|
<form class="form-inline form-search row">
|
||||||
<form class="form-search">
|
|
||||||
<div class="input-group col-md-4 col-md-offset-8">
|
<div class="input-group col-md-4 col-md-offset-8">
|
||||||
<input class="form-control" type="text" id="product-search" placeholder="Product Search...">
|
<input class="form-control" type="text" id="product-search" placeholder="Product Search...">
|
||||||
<span class="input-group-btn">
|
<span class="input-group-btn">
|
||||||
@ -9,7 +8,6 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
|
||||||
<script>
|
<script>
|
||||||
// redirect to product search page
|
// redirect to product search page
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
@ -18,7 +18,7 @@ $(document).ready(function() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{% include "app/stock/doctype/item/templates/includes/product_search_box.html" %}
|
{% include "app/stock/doctype/item/templates/includes/product_search_box.html" %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<h3 class="search-results">Search Results</h3>
|
<h3 class="search-results">Search Results</h3>
|
||||||
<div id="search-list" class="row">
|
<div id="search-list" class="row">
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
} %}
|
} %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="index">Home</a></li>
|
<li><a href="index">Home</a></li>
|
||||||
<li><a href="tickets">My Tickets</a></li>
|
<li><a href="tickets">My Tickets</a></li>
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
{%- endmacro %}
|
{%- endmacro %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="index">Home</a></li>
|
<li><a href="index">Home</a></li>
|
||||||
<li><a href="addresses">My Addresses</a></li>
|
<li><a href="addresses">My Addresses</a></li>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% set title="My Addresses" %}
|
{% set title="My Addresses" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-md-12">
|
<div class="container content">
|
||||||
<ul class="breadcrumb">
|
<ul class="breadcrumb">
|
||||||
<li><a href="index">Home</a></li>
|
<li><a href="index">Home</a></li>
|
||||||
<li class="active"><i class="icon-map-marker icon-fixed-width"></i> My Addresses</li>
|
<li class="active"><i class="icon-map-marker icon-fixed-width"></i> My Addresses</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user