123456789101112131415161718192021222324252627282930313233 |
- {% include 'header.twig' %}
- <div class="user_activity">
- {% for post in posts %}
-
- <div>
- {# Post title #}
- {% if post.link|length > 0 %}
- <a href="{{ post.link }}">
- {{ post.title }}
- </a>
- {% else %}
- <a href="../post/{{ post.hashId }}">
- {{ post.title }}
- </a>
- {% endif %}
-
- {# Post info #}
- <div class="info">
- {{ post.vote }} votes,
- <em>{{ post.created|ago }}</em>
- —
- <a href="../post/{{ post.hashId }}">{{ post.commentsCount }} comments</a>
- </div>
- </div>
-
- {% endfor %}
- </div>
-
- {% include 'footer.twig' %}
|