]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/event_stream_item.tpl
Merge pull request #3809 from rabuzarus/20171018_-_fix_posted_date_widget
[friendica.git] / view / theme / frio / templates / event_stream_item.tpl
1
2 <div class="vevent event-card">
3         <div class="vevent-header">
4                 <div class="event-card-details">
5                         <div class="event-card-header">
6                                 <div class="event-card-left-date">
7                                         <span class="event-date-wrapper medium">
8                                                 <span class="event-card-short-month">{{$month_short}}</span>
9                                                 <span class="event-card-short-date">{{$date_short}}</span>
10                                         </span>
11                                 </div>
12                                 <div class="event-card-content media-body">
13                                         <div class="event-title event-card-title summary event-summary">{{$title}}</div>
14                                         {{if $location.map}}<button id="event-map-btn-{{$id}}" class="event-map-btn btn-link fakelink nav nav-pills preferences" data-map-id="event-location-map-{{$id}}" data-show-label="{{$show_map_label}}" data-hide-label="{{$hide_map_label}}">{{$map_btn_label}}</button>{{/if}}
15                                         <div class="event-property">
16                                                 <span class="event-date">
17                                                         <span class="event-start dtstart" title="{{$dtstart_title}}">{{$start_short}}</span>
18                                                         {{if $finish}} - <span class="event-end dtend" title="{{$dtend_title}}">{{if $same_date}}{{$end_time}}{{else}}{{$end_short}}{{/if}}</span>{{/if}}
19                                                 </span>
20                                                 {{if $location.name}}
21                                                 <span role="presentation" aria-hidden="true"> ยท </span>
22                                                 <span class="event-location event-card-location">{{$location.name}}</span>
23                                                 {{/if}}
24                                         </div>
25                                         <div class="event-card-profile-name profile-entry-name">
26                                                 <a href="{{$author_link}}" class="userinfo">{{$author_name}}</a>
27                                         </div>
28                                         {{if $location.map}}
29                                         <div id="event-location-map-{{$id}}" class="event-location-map">{{$location.map}}</div>
30                                         {{/if}}
31                                 </div>
32                                 <div class="clearfix"></div>
33                         </div>
34                 </div>
35         </div>
36         <div class="clearfix"></div>
37
38         {{if $description}}
39         <div class="description event-description">
40                 {{$description}}
41         </div>
42         {{/if}}
43 </div>