{% extends "base.html" %} {% block title %}All Documents - {{ category.name }} - Vim Docs{% endblock %} {% block header_title %} {{ category.name }} All Documents {% endblock %} {% block header_actions %} New Document Back to Category {% endblock %} {% block extra_css %} {% endblock %} {% block content %}

All Documents ({{ documents|length }})

{% if documents %}
{% for doc in documents %}
{% if doc.category %} {% endif %}
{{ doc.content[:200] }}{% if doc.content|length > 200 %}...{% endif %}
{{ doc.updated_date.strftime('%b %d, %Y') }}
{% if doc.tags %}
{% for tag in doc.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No documents found

This category and its subcategories don't have any documents yet

Create Document
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}