31 lines
		
	
	
	
		
			797 B
		
	
	
	
		
			Smarty
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			797 B
		
	
	
	
		
			Smarty
		
	
	
	
	
	
 | 
						|
<div class="vevent">
 | 
						|
	<div class="summary event-summary">{{$title}}</div>
 | 
						|
 | 
						|
	<div class="event-start">
 | 
						|
		<span class="event-label">{{$dtstart_label}}</span> 
 | 
						|
		<span class="dtstart" title="{{$dtstart_title}}">{{$dtstart_dt}}</span>
 | 
						|
	</div>
 | 
						|
 | 
						|
	{{if $finish}}
 | 
						|
	<div class="event-end">
 | 
						|
		<span class="event-label">{{$dtend_label}}</span> 
 | 
						|
		<span class="dtend" title="{{$dtend_title}}">{{$dtend_dt}}</span>
 | 
						|
	</div>
 | 
						|
	{{/if}}
 | 
						|
 | 
						|
	{{if $description}}
 | 
						|
	<div class="description event-description">{{$description}}</div>
 | 
						|
	{{/if}}
 | 
						|
 | 
						|
	{{if $location}}
 | 
						|
	<div class="event-location">
 | 
						|
		<span class="event-label">{{$location_label}}</span> 
 | 
						|
		{{if $location.name}}
 | 
						|
		<span class="location">{{$location.name}}</span>
 | 
						|
		{{/if}}
 | 
						|
		{{if $location.map}}{{$location.map}}{{/if}}
 | 
						|
		
 | 
						|
	</div>
 | 
						|
	{{/if}}
 | 
						|
</div>
 |