Mercurial > public > bravenewsurf
annotate bns_website/templates/buy.html @ 49:a4e0b03e5c00
First attempt at the buy page. Corrected some HTML5 validation problems.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 11 Nov 2011 19:55:12 -0600 |
parents | f2cb9b2ec552 |
children | 4614ebe73263 |
rev | line source |
---|---|
bgneal@9 | 1 {% extends 'base.html' %} |
bgneal@9 | 2 {% load core_tags %} |
bgneal@9 | 3 {% block title %}Buy{% endblock %} |
bgneal@9 | 4 {% block content %} |
bgneal@9 | 5 {% navbar 'buy' %} |
bgneal@49 | 6 <div class="row"> |
bgneal@49 | 7 <div class="span10"> |
bgneal@49 | 8 <img src="{{ STATIC_URL }}images/cd.jpg" alt="Brave New Surf CD" title="Brave New Surf CD" /> |
bgneal@49 | 9 </div> |
bgneal@49 | 10 <div class="span6"> |
bgneal@49 | 11 <h1>Buy</h1> |
bgneal@49 | 12 <p> |
bgneal@49 | 13 Please click the button below to add the <em>Brave New Surf</em> CD to your <strong>Double Crown Records</strong> |
bgneal@49 | 14 shopping cart. You can pay by: |
bgneal@49 | 15 </p> |
bgneal@49 | 16 <ul> |
bgneal@49 | 17 <li>Visa</li> |
bgneal@49 | 18 <li>Mastercard</li> |
bgneal@49 | 19 <li>American Express</li> |
bgneal@49 | 20 <li>Discover</li> |
bgneal@49 | 21 <li>Diner's Club</li> |
bgneal@49 | 22 <li>JCB</li> |
bgneal@49 | 23 <li>Paypal</li> |
bgneal@49 | 24 </ul> |
bgneal@49 | 25 <p><a href="http://www.ccnow.com/cgi-local/cart.cgi?doublecrown_DCCD45_http://www.doublecrownrecords.com/products-page/" class="btn large primary">Add to Cart</a></p> |
bgneal@49 | 26 <hr /> |
bgneal@49 | 27 <p>If you prefer to order by mail, please send $12.75 USD plus shipping to:</p> |
bgneal@49 | 28 <address> |
bgneal@49 | 29 <strong>Double Crown Records</strong><br /> |
bgneal@49 | 30 P.O. Box 4336<br /> |
bgneal@49 | 31 Bellingham, WA 98227-4336<br /> |
bgneal@49 | 32 USA |
bgneal@49 | 33 </address> |
bgneal@49 | 34 <p>Shipping:</p> |
bgneal@49 | 35 <ul> |
bgneal@49 | 36 <li>US - $2.00 USD</li> |
bgneal@49 | 37 <li>Canada - $3.00 USD</li> |
bgneal@49 | 38 <li>Rest of the World - $4.00 USD</li> |
bgneal@49 | 39 </ul> |
bgneal@49 | 40 </div> |
bgneal@49 | 41 </div> |
bgneal@9 | 42 {% endblock %} |