Skip to content

Commit

Permalink
updated readme, hid quote orders from Orders page, updated About page…
Browse files Browse the repository at this point in the history
… layout
  • Loading branch information
dhalarewich committed Aug 28, 2014
1 parent 87dbd9d commit 9c707ba
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ While you can definitely use Coastal as-is, Coastal is meant to be modified. The
- Modular homepage and promo boxes - stack them in many variations (1-up, 2-up, 3-up)
- Change the header and footer background colours to any of your choosing
- Guest and registered user checkout
- Sharing icons for Twitter, Facebook, and Pinterest lets customers share your products on their favourite social network
- Social icons for Twitter, Facebook, and Pinterest

***

Expand All @@ -42,6 +42,7 @@ All photos in the theme are free to use under the [Attribution-NoDerivs 2.0 Gene
#### TODO
- ~~Add coupon code functionality~~
- ~~Add theme customization options~~
- ~~Make it easier to add custom category images, per category~~
- Add more Rich Snippets
- Add plugin for nicer dropdowns (ie. Chosen)
- Make it easier to add custom category images, per category

19 changes: 11 additions & 8 deletions pages/about/page-about.htm
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
name: About
url: /about
---
<div class="row">
<div class="content twelve columns">
{# content_block('about', 'About us') #}
<h3>We're On a Mission to Make eCommerce Better.</h3>
<p>And we're doing that by building a more flexible, modern, easier to use and higher performance eCommerce platform.</p>
<h3>Focusing on several key areas</h3>
<p>We have a few key objectives that we focus on every day. We believe continual growth and refinement in these areas put us a step ahead in the market, but more importantly provide greater value to our customers.&nbsp;<a href="https://lemonstand.com/tour">Learn more about LemonStand</a>.</p>
</div>
<div class="container buffer-bottom">
<div class="row">
<div class="content col-sm-6">
<h3>This is the Coastal theme for LemonStand.</h3>
<p>LemonStand is an eCommerce platform made for online retailers that take growth seriously. The Coastal theme is a free, responsive eCommerce theme for LemonStand.</p>
</div>
<div class="content col-sm-6">
<h3>Customize this content!</h3>
<p>Go ahead and customize this content. Use this page to tell your company's story, and connect with your customer.</p>
</div>
</div>
</div>
18 changes: 9 additions & 9 deletions pages/orders/page-orders.htm
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
action: 'shop:orders'
template: inner
protocol: all
published: true
name: Orders
url: /orders
---
---
action: 'shop:orders'
template: inner
protocol: all
published: true
name: Orders
url: /orders
---
<div class="container buffer-bottom">
<div class="row">

Expand All @@ -29,7 +29,7 @@
</tr>
</thead>
<tbody>
{% for order in orders %}
{% for order in orders if not order.is_quote %}
{% set url = root_url('/order/'~order.id) %}
<tr>
<td><a href="{{ url }}">{{ order.number }}</a></a></td>
Expand Down

0 comments on commit 9c707ba

Please sign in to comment.