{% extends "layouts/default.html" %} {% block title %}{{ project-name }} | Quickdocs{% endblock %} {% block css %} {% endblock %} {% block content %}

{{ project-name }}

{{ ql-dist-version }} {% include "partials/header-links.html" %}
{% if readme %}
{% if readme.converted %}{{ readme.converted | safe }}{% else %}
{{ readme.raw }}
{% endif %}
{% endif %} {% if authors or maintainers or licenses or categories %}
{% if authors %}
Author
{{ authors | join:", " }}
{% endif %} {% if maintainers %}
Maintainer
{{ maintainers | join:", " }}
{% endif %} {% if licenses %}
License
{{ licenses | join:", " }}
{% endif %} {% if categories %}
Categories
{% for category in categories %} {{ category }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% endif %}
{% include "partials/footer.html" %} {% endblock %}