Add products

This commit is contained in:
Kishan B 2018-05-12 15:58:56 +05:30
parent 2a0f691419
commit b7f2a90037
13 changed files with 81 additions and 15 deletions

View File

@ -0,0 +1,21 @@
---
title: "Duke"
date: 2018-05-12T15:48:00+05:30
tags: ["Floor Light"]
categories: ["Floor Light"]
images: ["https://cdn.shopify.com/s/files/1/1204/7448/products/1210F.4_1024x1024.jpg?v=1517572734", "https://cdn.shopify.com/s/files/1/1204/7448/products/1210F.1_1024x1024.jpg?v=1517572734", "https://cdn.shopify.com/s/files/1/1204/7448/products/1210F.2_1024x1024.jpg?v=1517572734"]
thumbnailImage: "https://cdn.shopify.com/s/files/1/1204/7448/products/1210F.4_large.jpg?v=1517572734"
comparePrice: ""
actualPrice: "₹ 87,341.00"
inStock: true
---
Total Fixture Dimensions (in inches): 51x51x63
Material: Aluminium
Colour: Black Gold
Pack Content: 1 piece lamp with all parts included. Bulbs not included.
Bulb Recommended: E14 CFL, LED or Incandescent Bulb

View File

@ -0,0 +1,21 @@
---
title: "Modo 21 Lamp"
date: 2018-05-12T15:54:25+05:30
tags: ["chandeliers"]
categories: ["chandeliers"]
images: ["https://cdn.shopify.com/s/files/1/1204/7448/products/MD8001-21_1024x1024.jpg?v=1522740623", "https://cdn.shopify.com/s/files/1/1204/7448/products/MD8001-21.2_1024x1024.jpg?v=1522740623", "https://cdn.shopify.com/s/files/1/1204/7448/products/MD8001-21_1024x1024.jpeg?v=1522740623"]
thumbnailImage: "https://cdn.shopify.com/s/files/1/1204/7448/products/MD8001-21_large.jpeg?v=1522740623"
comparePrice: ""
actualPrice: "₹ 85,000.00"
inStock: true
---
A mid-century modern chandelier which in inspired by the hub and spoke design. It has a modern take on a retro industrial style of lighting. The incandescent bulbs in the smoky glass globes glow beautifully when turned on. This chandelier offers warm ambient lighting and will effortless enhance your home decor. It is a luxury lighting fixture for your living room or dining room. Buy Luxury Chandeliers Online in India at best prices. Free Shipping.
Total Fixture Dimensions (in inches): D1235xH81cm
Material: Metal & Glass
Colour: Black & Grey
Bulb Holder: E14

View File

@ -0,0 +1,21 @@
---
title: "Oda Lamp"
date: 2018-05-12T13:50:55+05:30
tags: ["Floor Light"]
categories: ["Floor Light"]
images: ["https://cdn.shopify.com/s/files/1/0832/3531/products/49ab4aa3fc99e391e74c22754cbc7262_1024x1024.jpg?v=1509266776", "https://cdn.shopify.com/s/files/1/0832/3531/products/Oda_Small_Oda_Big_1024x1024.jpg?v=1509266715"]
thumbnailImage: "https://cdn.shopify.com/s/files/1/0832/3531/products/49ab4aa3fc99e391e74c22754cbc7262_large.jpg?v=1509266776"
comparePrice: "₹ 25,920.00"
actualPrice: "₹ 12,960.00"
inStock: false
---
Oda is a floor lamp made from a handblown tinted glass barrel balancing on a simple and elegant metal structure.
Material: Glass and wrought iron
Color: Smokey Grey
Dimensions: Glass portion: Dia- 36cm x H-45cm
Stand: L27cm x B27cm x H 107cm

View File

@ -1,3 +1,3 @@
{{ define "main" }}
{{ partial "product-list.html" . }}
{{ partial "products/list/product-list.html" . }}
{{ end }}

View File

@ -5,7 +5,7 @@
</li>
{{ range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
<li class="nav-item">
<a class="nav-link" href="{{ .Permalink }}">{{ .Title}}</a>
<a class="nav-link" href="{{ .Permalink }}">{{ .Title | title }}</a>
</li>
{{ end }}
</ul>

View File

@ -4,12 +4,12 @@
<article class="container-fluid">
<div class="row">
<div class="col-12">
{{ partial "site-main-nav.html" . }}
{{ partial "products/common/site-main-nav.html" . }}
</div>
</div>
<div class="row">
{{ range .Data.Pages }}
{{ partial "product-list-item.html" . }}
{{ partial "products/list/product-list-item.html" . }}
{{ end }}
</div>
</article>

View File

@ -0,0 +1,6 @@
<h1>{{ .Title }}</h1>
<p>
<span style="text-decoration: line-through">{{ .Params.comparePrice }}</span>
<span>{{ .Params.actualPrice }}</span>
{{ if not .Params.inStock }} <span class="font-weight-bold">— Sold Out</span> {{ end }}
</p>

View File

@ -1,3 +1,3 @@
{{ define "main" }}
{{ partial "product-list.html" . }}
{{ partial "products/list/product-list.html" . }}
{{ end }}

View File

@ -5,26 +5,23 @@
<article class="container-fluid">
<div class="row">
<div class="col-12">
{{ partial "site-main-nav.html" . }}
{{ partial "products/common/site-main-nav.html" . }}
</div>
</div>
<div class="row d-block d-md-none">
<div class="col-sm-12">
<h1>{{ .Title }}</h1>
<p>{{ .Params.actualPrice }} {{ if not .Params.inStock }} <span class="font-weight-bold">— Sold Out</span> {{ end }}</p>
{{ partial "products/single/product-single-heading.html" . }}
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6">
{{ range .Params.images }}
<img class="img-fluid text-center" src="{{ . }}" /> {{ end }}
<img class="img-fluid text-center" src="{{ . }}" />
{{ end }}
</div>
<div class="col-sm-12 col-md-6">
<h1 class="d-sm-none d-md-block">{{ .Title }}</h1>
<p class="d-sm-none d-md-block">{{ .Params.actualPrice }} {{ if not .Params.inStock }}
<span class="font-weight-bold">— Sold Out</span> {{ end }}</p>
<p>{{ .Content }}</p>
<div class="col-sm-12 col-md-6 d-sm-none d-md-block">
{{ partial "products/single/product-single-heading.html" . }}
</div>
</div>
</article>
{{end }}
{{ end }}