Changeset 4462
- Timestamp:
- 01/06/12 16:41:40 (5 months ago)
- Location:
- plugins/apostropheBlogPlugin/branches/1.5/modules/aEvent/templates
- Files:
-
- 1 added
- 1 modified
-
_excerptTemplate.php (added)
-
indexSuccess.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostropheBlogPlugin/branches/1.5/modules/aEvent/templates/indexSuccess.php
r3933 r4462 12 12 <div class="a-subnav-inner"> 13 13 <?php include_component('aBlog', 'sidebar', array('params' => $params, 'dateRange' => $dateRange, 'info' => $info, 'url' => 'aEvent/index', 'searchLabel' => a_('Search Events'), 'newLabel' => a_('New Event'), 'newModule' => 'aEventAdmin', 'newComponent' => 'newEvent', 'calendar' => $calendar)) ?> 14 </div> 14 </div> 15 15 </div> 16 16 <?php end_slot() ?> 17 17 18 18 <div id="a-blog-main" class="a-blog-main clearfix"> 19 19 20 20 <div class="a-ui a-blog-heading"> 21 21 <?php ($page) ? $slots = $page->getArea('blog-heading') : $slots = array() ?> … … 31 31 32 32 <?php foreach ($pager->getResults() as $a_event): ?> 33 <?php echo include_partial('aEvent/post', array('a_event' => $a_event)) ?> 34 <hr class="a-hr" /> 33 34 <?php if (sfConfig::get('app_aEvents_excerpts_show')): ?> 35 <?php include_partial('aEvent/excerptTemplate', array('a_event' => $a_event, 'edit' => false)) ?> 36 <?php else: ?> 37 <?php echo include_partial('aEvent/post', array('a_event' => $a_event)) ?> 38 <?php endif ?> 39 <hr class="a-hr" /> 40 35 41 <?php endforeach ?> 36 42

