Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. {% for event in page.calendar.events_past reversed %}
  2. <div class="event event-ciclavia desktop-12 tablet-6 mobile-3">
  3. <div class="desktop-8 tablet-6 mobile-3 contained right">
  4. <div class="event-thumbnail" style="background-image: url({{ event['history-image.jpg'] }}) "></div>
  5. </div>
  6. <div class="event-info desktop-4 tablet-6 mobile-3 contained">
  7. <header class="event-header">
  8. <a href="{{ event.url }}">
  9. <h4>{{ event.event.local_start_at | date: '%A, %B %d, %Y' }}</h4>
  10. <h2>{{ event.name }}</h2>
  11. <h4>{{ event.page.venue_name }}</h4>
  12. </a>
  13. {{ page.excerpt }}
  14. </header>
  15. <div class="event-meta">
  16. {% if event['ciclavia-routemap.pdf'] != 'ciclavia-routemap.pdf' %}<a class="btn btn-primary ss-glyphish-outlined ss-map" href="{{ event['ciclavia-routemap.pdf'] }}" download>Route Map</a>{% endif %}
  17. {% if event['ciclavia-neighborhoodguide.pdf'] != 'ciclavia-neighborhoodguide.pdf' %}<a class="btn btn-primary ss-glyphish-outlined ss-newspaper" href="{{ event['ciclavia-neighborhoodguide.pdf'] }}" download>Neighborhood Guide</a>{% endif %}
  18. {% if event['ciclavia-activityguide.pdf'] != 'ciclavia-activityguide.pdf' %}<a class="btn btn-primary ss-glyphish-outlined ss-page" href="{{ event['ciclavia-activityguide.pdf'] }}" download>Activity Guide</a>{% endif %}
  19. <br><a class="btn-more" href="{{ event.url }}">Learn More</a>
  20. </div>
  21. </div>
  22. </div>
  23. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement