{% extends "base.html" %} {% block title %}{{ category.name }} - Vim Docs{% endblock %} {% block header_title %} {{ category.name }} {% endblock %} {% block header_actions %} New Document {% endblock %} {% block content %}

{{ category.name }}

{% if category.description %} {{ category.description }} {% else %} A category for organizing your documents {% endif %}
Home {% if category.parent %} / {{ category.parent.name }} {% endif %} / {{ category.name }}
{% if category.children.count() > 0 %}

Subcategories

{% endif %}

Documents

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

No documents in this category

Create your first document in this category

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