{% extends "layout.html" %} {% import "macros/_social.html" as social %} {% block page_title %}Dribs{% endblock %} {% block body_class %}dribs-page{% endblock %} {% block content %}
{% if current_user and current_user.is_authenticated %}
Write a Post
{% endif %} {% if not data.items %}
Log in and write a Post to see your Dribs* (project updates) here
{% else %}
{% for s in data.items %}
{% if s.name == 'boost' %} {% else %} {% endif %}
{% if s.content %}
{{s.content|markdown|safe}}
{% endif %} {% if s.ref_url %} {% endif %} {% if s.ref_url %} {% endif %} {% if config.DRIBDAT_SOCIAL_LINKS and s.share %} {{ social.share_links(s.share.text, s.share.url) }} {% endif %}
{% endfor %}
{% endif %} {% if data.has_next %} More! {% endif %}

Join a project to share your progress!

* dribs n. pl.: in small amounts, a few at a time

{% if current_event %}
{{ current_event.name }}
{% endif %} {% endblock %}