Advertisement
swest

Event Single view-solved

Feb 20th, 2025
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.88 KB | None | 0 0
  1. <div class="single-event-view">
  2.     <div class="event-details">
  3.         <p class="event-description">{{ post.event_description }}</p>
  4.             <div class="event-location">
  5.                 <li class="event-location-name"><a href="{{ post.event_location_url }}" title="map to {{ post.event_location_name }}">{{ post.event_location_name }}, {{ post.event_street_address }} </a></li>
  6.             </div>
  7.         <hr>
  8.         {% set topic_args = { relationship: { id: 'event-to-topic', from: post.ID }, nopaging: true, post_type: 'topic', orderby: topic.topic_datetime | date( 'Y-m-d H:i' ), order: 'DESC' } %}
  9.         {% set topics = mb.get_posts( topic_args ) %}
  10.         {% for topic in topics %}
  11.         <section class="speaker-topic-wrapper">
  12.             <div class="topic-details">
  13.                     <h2 class="topic-title"><a href="{{ topic.url }}">{{ topic.topic_title }}</a></h2>
  14.                     <p class="topic-date-time">{{ topic.topic_datetime | date( 'M j, Y' ) }} at {{ topic.topic_datetime | date( 'h:i A' ) }}</p>
  15.                     <p class="topic-description">{{ topic.topic_description }}</p>
  16.             </div>
  17.            
  18.             <div class="related-team-member">
  19.                 {% set team_args = { relationship: { id: 'topic-to-team', from: topic.ID }, nopaging: true, post_type: 'team' } %}
  20.                 {% set teams = mb.get_posts( team_args ) %}
  21.                 {% for team in teams %}
  22.                 <div class="team-member-details">
  23.                     <img class="speaker-image" src="{{ team.thumbnail.full.url }}" width="{{ team.thumbnail.full.width }}" height="{{ team.thumbnail.full.height }}" alt="{{ team.thumbnail.full.alt }}">
  24.                     <p class="team-member-name"><a href="{{ team.url }}">{{ team.team_member_name }}</a></p>
  25.                 </div>
  26.                 {% endfor %}  
  27.         </section>
  28.         <hr>
  29.         {% endfor %}
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement