{% extends "base.html" %} {% block title %}Recent Pastes - PasteBin{% endblock %} {% block content %}
{% if pastes %}
{% for paste in pastes %}
ID: {{ paste.id }} Created: Views: {{ paste.views }}
{% endfor %}
{% else %}
📝

No recent pastes

Be the first to create a paste!

Create New Paste
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}