swest

Team Member Topic view

Feb 13th, 2025
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1. {% set relationship = attribute( relationships, 'topic-to-team' ) %}
  2. {% for post in relationship.from %}
  3.     <div class="team-topic-view">
  4.         <section class="speaker-topic-wrapper">
  5.             <div class="topic-details">
  6.                 <h4 class="topic-title">{{ post.topic_title }}</h4>
  7.                 <div><b>{{ post.topic_datetime | date( 'F j, Y' ) }}</b> | {% set relationship = attribute( relationships, 'event-to-topic' ) %} {% for post in relationship.from %}<a href="{{ post.url }}" target="_blank">{{ post.event_name }}</a> {% endfor %}</div>
  8.                 <div class="description-container truncate">
  9.                     <p>{{post.topic_description}}</p>
  10.                 </div>
  11.                 <p class="read-more-link"><a href="{{ post.url }}" target="_blank">Read more...</a></p>
  12.             </div>
  13.         </section>
  14.     </div>  
  15. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment