Event Updates
authorSteve Sutton <steve@gaslightmedia.com>
Wed, 4 Mar 2015 21:34:06 +0000 (16:34 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Wed, 4 Mar 2015 21:34:06 +0000 (16:34 -0500)
Update color and font for the event titles on the list page.
update intro to have Continue Reading... with link

Toolkit/Events/css/event.css
Toolkit/Events/views/eventList.html

index 69721a4..d49665a 100755 (executable)
     color: #0578B2;
     /*border-top: 1px solid #999;*/
 }
+.event-item h4 a {
+    font-family: 'Oleo Script', cursive;
+    font-size: 30px;
+    font-weight: bold;
+    color: #6a9797;
+    margin-top: 2.75rem;
+}
+.event-item-cont {
+    color: #b4282d;
+}
 /* Event Shortcuts */
 #event-shortcuts ul {
     /*width: 180px;*/
index 82c6479..3975dde 100644 (file)
 {if:events}
 <div class="row">
   <div class="small-12 columns" flexy:foreach="events,event">
-    <!--<a class="pull-right" href="{event.href}" flexy:if="event.image">
-      <img class="media-object img-responsive img-thumbnail" src="{imgBaseUrl:h}eventListThumb/{event.image}" alt="...">
-    </a>-->
-    <div class="media-body">
-      <h4 class="media-heading"><a href="{event.href}">{event.header}</a></h4>
+    <div class="event-item">
+      <h4><a href="{event.href}">{event.header}</a></h4>
       <h5><strong>{event.getDates()} {event.getEventTimes()}
           <?php
             $eventDays = $event->getEventDays();
@@ -27,8 +24,7 @@
                 echo ' - ' . $eventDays;
             }
             ?></strong></h5>
-    <!-- <h6>{if:event.category}{event.getCategoryName()}{end:}</h6> -->
-    <p>{event.intro:h}</p>
+    <p>{event.intro:h} <a class="event-item-cont" href="{event.href}">Continue Reading...</a></p>
     </div>
   </div>
 </div>