{% extends app.request.query.get("embed") == '1' ? "base.html.twig" : "bases/base." ~ subdomain ~ ".html.twig" %} {% block title %} {{ parent() }} {% endblock %} {% block head %} {{ parent() }} {# #} {% endblock %} {% block javascript %} {{ parent() }} {% endblock %} {% block styles %} {{parent()}} {% endblock %} {% block body %}

Your account


{{user.username}}

You are a {{user.roleDescription}}. You have posted {{posts|length}} events.

{% if posts|length == 0 %}

Click here to submit your first event!

{% else %} {% for post in posts %}
{% if post.image == null %} {% else %} {% endif %}

{{post.name}} {% if post.postType.id == 1 %}
Volunteer Opportunity {% endif %} {% if post.isAnnouncement %} Announcement {% endif %}

{{post.start | date('F jS, g:i a')}} · {{post.location.name}} · {{sponsorNames|join(', ')}}

{{post.description}}

View post Edit post

{{post.likes}} people are interested in this post
{% endfor %} {% endif %}
{% endblock %}