{% extends "base.html" %} {% block title %}InkDrop — Write & Share{% endblock %} {% block content %}

Write. Share. Collaborate.

A modern platform for writers and creators.

{% if not session.get('user_id') %} Get Started {% endif %}

Recent Posts

{% if posts %}
{% for post in posts %}

{{ post.title }}

{{ post.content[:100] }}{% if post.content|length > 100 %}...{% endif %}

{% endfor %}
{% else %}

No posts yet. Be the first to write!

{% endif %}
{% endblock %}