{% comment %} For displaying a series of separate lists of different items - Photos, Bookmarks or Tweets. Expects to be in context. May specifically have: * view - 'list' (a generic list), 'day' or 'detail'. {% endcomment %} {% if flickr_photo_list and flickr_photo_list|length > 0 %}

Flickr photos {% if order == 'taken' %} (taken) {% elif view == 'day' %} (uploaded) {% endif %}

{% include 'flickr/includes/photo_columns.html' with order=order photo_list=flickr_photo_list view=view %} {% endif %} {% if pinboard_bookmark_list and pinboard_bookmark_list|length > 0 %}

Pinboard bookmarks

{% include 'pinboard/includes/bookmark_list.html' with bookmark_list=pinboard_bookmark_list view=view %} {% endif %} {% if twitter_tweet_list and twitter_tweet_list|length > 0 %}

Twitter tweets

{% include 'twitter/includes/tweet_list.html' with tweet_list=twitter_tweet_list view=view %} {% endif %} {% if twitter_favorite_list and twitter_favorite_list|length > 0 %}

Liked tweets

{% include 'twitter/includes/tweet_list.html' with tweet_list=twitter_favorite_list view=view %} {% endif %}