{% extends g.theme.master %} {% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / Recent Pastes{% endblock %} {% block header %}{{ title or 'Recent Pastes' }}{% endblock %} {% block content %} {% for paste in pastes %}
{{h.ago(paste.mod_date)}} View {{paste.lines}} lines {{ 'Private' if paste.private }}
{{paste.snippet()}}
{% else %} {% if search_error %}
{{ search_error }}
{% else %}
No results
{% endif %} {% endfor %} {% endblock %}