is_template: False Authors ======= This plugin creates overview content pages grouped by their authors. Installation ------------ .. code-block:: python # settings.py PLUGINS = [ 'flamingo.plugins.Authors', ] Usage ----- To use ``authors`` you need to add a template to render the overview pages. This example will render two pages: ``/authors/alice.html`` and ``/authors/bob.html``. .. code-block:: rst # a content file can have one or more authors authors: Alice, Bob Hello World =========== Lorem ipsum .. code-block:: html {% extends "DEFAULT_TEMPLATE" %}

Contents by {{ author }}