Mercurial > public > madeira
changeset 189:e00cfb131d44
Update bio page.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 16 Apr 2016 11:20:16 -0500 |
parents | c73c1392d11e |
children | 55c4d2c0ee27 |
files | madeira/templates/band/bio.html |
diffstat | 1 files changed, 46 insertions(+), 33 deletions(-) [+] |
line wrap: on
line diff
--- a/madeira/templates/band/bio.html Wed Mar 02 20:26:30 2016 -0600 +++ b/madeira/templates/band/bio.html Sat Apr 16 11:20:16 2016 -0500 @@ -4,49 +4,62 @@ {% block navblock %}{% navbar 'bio' %}{% endblock %} {% block content %} <h1>Band Biography</h1> -<p> -The Madeira began in 2004 in Indianapolis, IN. The band features Ivan -Pongracic on lead guitar, the founder of the 1990s surf music icons -the Space Cossacks; Patrick O'Connor on rhythm guitar, the founder of -the Indy space-surf mavens Destination: Earth!; Dane Carter on drums; -and Todd Fortier on bass. The Madeira have released five CDs: -“Sandstorm” (2005), “Ruins” EP (2006), “Carpe Noctem” (2008), “Tribal -Fires” (2012) and "Sonic Cataclysm - Live" (2014). They've played all -around the US, including three California tours as well as shows on -the East Coast and in the South, though they primarily play in the +<div class="row"> + <div class="col-sm-10"> +The Madeira began in 2004 in Indianapolis, IN. The +band features Ivan Pongracic on lead guitar, the founder of the 1990s +surf music icons the Space Cossacks; Patrick O'Connor on rhythm +guitar, the founder of the Indy space-surf mavens Destination: Earth!; +Dane Carter on drums; and Todd Fortier on bass. The Madeira have +released six CDs: “Sandstorm” (2005), “Ruins” EP (2006), “Carpe +Noctem” (2008), “Tribal Fires” (2012), "Sonic Cataclysm - Live" +(2014), and "Ancient Winds (2015). They've played all around the US, +including three California tours as well as shows on the East Coast +and in the South, though they primarily play in the Indiana/Illinois/Ohio/Michigan/Wisconsin area. They headlined the third and final night of the 2009 Surfer Joe Festival in Livorno, Italy, followed by a 10-day Italian tour. UK's Pipeline magazine, the leading surf/instrumental-rock fanzine in the world, selected “Carpe -Noctem” Album of the Year in 2008, and “Sandstorm” and “Tribal Fires” -as runners-up for the Album of the Year in 2006 and 2012, -respectively. NUVO Indianapolis Weekly paper included "Carpe Noctem" -in their April 2014 article "100 Best Hoosier Albums Ever," among -albums by music legends Wes Montgomery, the Jackson Five and John -Mellencamp. The band was also featured in a full-page article in the -March issue of the Guitar Player magazine in the column titled "Now -Hear This - Snappy Profiles of Players You Should Know." -</p> +Noctem” Album of the Year in 2008, "Sonic Cataclysm" the Album of the +Year in 2014, "Ancient Winds" Album of the Year in 2015, and +“Sandstorm” and “Tribal Fires” as runners-up for the Album of the Year +in 2006 and 2012, respectively. NUVO Indianapolis Weekly paper +included "Carpe Noctem" in their April 2014 article "100 Best Hoosier +Albums Ever," among albums by music legends Wes Montgomery, the +Jackson Five and John Mellencamp. The band was also featured in a +full-page article in the March 2014 issue of the Guitar Player +magazine in the column titled "Now Hear This - Snappy Profiles of +Players You Should Know." + </div> +</div> {% if members %} {% for member in members %} - <h2>{{ member.name }} <small>{{ member.instrument }}</small></h2> - <div class="media"> - {% if member.photo %} - <img class="pull-left media-object img-rounded" src="{{ member.photo.url }}" alt="{{ member.name }}" - title="{{ member.name }}" /> - {% endif %} - {{ member.bio|linebreaks }} + <div class="row"> + <div class="col-sm-10"> + <h2>{{ member.name }} <small>{{ member.instrument }}</small></h2> + <div class="media"> + {% if member.photo %} + <img class="pull-left media-object img-rounded" src="{{ member.photo.url }}" alt="{{ member.name }}" + title="{{ member.name }}" /> + {% endif %} + {{ member.bio|linebreaks }} + </div> + </div> + </div> {% if member.gear_set.all %} - <p>Gear:</p> - <ul> - {% for item in member.gear_set.all %} - <li>{{ item.item }}</li> - {% endfor %} - </ul> + <div class="row"> + <div class="col-sm-10"> + <p>Gear:</p> + <ul> + {% for item in member.gear_set.all %} + <li>{{ item.item }}</li> + {% endfor %} + </ul> + </div> + </div> {% endif %} <br class="clearfix"> - </div> {% endfor %} {% else %} <p>The band has no members.</p>