Ejemplo n.º 1
0
?>

		<div class="house empty-top">

			<div class="reed">
				
			<?php 
perch_events_custom(array('filter' => 'eventSlug', 'match' => 'eq', 'value' => perch_get('s'), 'template' => 'listing/event-detail.html'));
?>
	
			</div>
			
			<div class="side">
				<h3>Event Categories</h3>				
				<?php 
perch_events_categories(array('sort-order' => 'desc', 'template' => 'listing/events-categories.html'));
?>
			</div>

		</div>		
		

		<?php 
perch_layout('twitter');
?>
						
		<?php 
perch_layout('email-signup');
?>

		<?php 
Ejemplo n.º 2
0
	<!--  change cols2-nav-right to cols2-nav-left if you want the sidebar on the left -->
	<div class="wrapper cols2-nav-right">
	
		<div class="primary-content">
			<h1>Example Custom Event Listing</h1>

			<p>You can completely customise the information that is returned. This enables you to filter between dates, and select how many events to display rather than show a month at a time. This can be useful to display a listing of the next few events on a homepage for example.</p>
			<?php 
perch_events_custom(array('filter' => 'eventDateTime', 'match' => 'gte', 'value' => date('Y-m-d'), 'count' => 3, 'sort' => 'eventDateTime', 'sort-order' => 'desc', 'template' => 'listing/custom-listing-day.html'));
?>
		</div>

		<nav class="sidebar">
		    <!--  By category listing -->
		    <?php 
perch_events_categories();
?>
    	</nav>
		
		
	</div>


	<?php 
perch_get_javascript();
?>
</body>
</html>