Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% set relationship = attribute( relationships, 'topic-to-team' ) %}
- {% for post in relationship.from %}
- <div class="team-topic-view">
- <section class="speaker-topic-wrapper">
- <div class="topic-details">
- <h4 class="topic-title">{{ post.topic_title }}</h4>
- <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>
- <div class="description-container truncate">
- <p>{{post.topic_description}}</p>
- </div>
- <p class="read-more-link"><a href="{{ post.url }}" target="_blank">Read more...</a></p>
- </div>
- </section>
- </div>
- {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment