Starter Template

1. Current User: {{ user.get('username') }}

{{ user }}

2. Suggestions

First Suggestion: {{ suggestions[0].get('username') }}

{{ suggestions }}

3. Stories

Title of first story: {{ stories[0].get('title') }}

{{ stories }}

4. Posts

Image from first post:

First comment from first post: {% if posts[0].comments|length > 0 %} {{ posts[0].comments[0].text }} {% else %} The first post doesn't have a comment. {% endif %}

{{ posts }}