diff mysite/templates/band/gigs.html @ 21:f3052378ab47

Updating the home page with a 6 video playlist from Mahogany's. Fixed the flyers on the gig page under chrome. Updated the copyright on the base template.
author Brian Neal <bgneal@gmail.com>
date Sun, 20 Mar 2011 19:53:35 +0000
parents 1b6b3e38e918
children ead7bd49c9e0
line wrap: on
line diff
--- a/mysite/templates/band/gigs.html	Wed Sep 08 23:15:57 2010 +0000
+++ b/mysite/templates/band/gigs.html	Sun Mar 20 19:53:35 2011 +0000
@@ -88,8 +88,9 @@
 {% if flyerGigs %}
 <div class="thumb-box">
    <h2>Flyers</h2>
-   <center>
+   <div style="width:90%; margin-left:auto;">
    {% for gig in flyerGigs %}
+      <div style="display:inline-table;">
       <table class="image-table">
          <caption>{{ gig.venue.name}}, {{ gig.date|date:"F 'y" }}</caption>
          <tr><td>
@@ -97,8 +98,9 @@
             <img src="{{ gig.flyer.get_thumbnail_url }}" alt="{{ gig.date|date:"F d, Y" }}" title="{{ gig.date|date:"F d, Y" }}" /></a>
          </td></tr>
       </table>
+      </div>
    {% endfor %}
-   </center>
+   </div>
    <div clear="all"></div>
    <center><p>To see all our flyers in full size, check out our <a href="{% url band.views.flyers %}">show flyer gallery</a>.</p></center>
 </div>