where the first article is fully expanded so the users are greeted with some
actual content instead of just a boring list of article summaries.
+Article pages show a list of sections and tags in a right sidebar. By default,
+list of authors is not displayed as there is usually just one author. If you
+want to display the authors as well, enable it using the :py:`SHOW_AUTHOR_LIST`
+option in the configuration:
+
+.. code:: py
+
+ M_SHOW_AUTHOR_LIST = True
+
`Jumbo articles`_
-----------------
:slug: jumbo-article
:summary: Article summary paragraph.
+Sidebar with tag, category and author list shown in the classic article layout
+on the right is moved to the bottom for jumbo articles.
+
.. note-info::
You can compare how an article with nearly the same contents looks as
{% if article and article.cover %}
<nav class="m-navpanel m-container">
<div class="m-row">
- <div class="m-col-m-5 m-push-m-1 m-col-s-6">
+ <div class="{% if M_SHOW_AUTHOR_LIST %}m-col-s-4{% else %}m-col-m-4 m-push-m-2 m-col-s-6{% endif %}">
<h3>Cate­gories</h3>
<ol class="m-block-bar-m">
{% for cat, null in categories %}
{% endfor %}
</ol>
</div>
- <div class="m-col-m-5 m-push-m-1 m-col-s-6">
+ {% if M_SHOW_AUTHOR_LIST %}
+ <div class="m-col-s-4">
+ <h3>Authors</h3>
+ <ol class="m-block-bar-m">
+ {% for author, null in authors %}
+ <li><a href="{{ author.url|format_siteurl }}">{{ author }}</a></li>
+ {% endfor %}
+ </ol>
+ </div>
+ {% endif %}
+ <div class="{% if M_SHOW_AUTHOR_LIST %}m-col-s-4{% else %}m-col-m-4 m-push-m-2 m-col-s-6{% endif %}">
<h3>Tag cloud</h3>
<ul class="m-tagcloud">
{% set max_articles_per_tag = tags|map(attribute='1')|map('length')|sort|last %}
<li><a href="{{ cat.url|format_siteurl }}">{{ cat|hyphenate }}</a></li>
{% endfor %}
</ol>
+ {% if M_SHOW_AUTHOR_LIST %}
+ <h3>Authors</h3>
+ <ol class="m-block-bar-m">
+ {% for author, null in authors %}
+ <li><a href="{{ author.url|format_siteurl }}">{{ author }}</a></li>
+ {% endfor %}
+ </ol>
+ {% endif %}
<h3>Tag cloud</h3>
<ul class="m-tagcloud">
{% set max_articles_per_tag = tags|map(attribute='1')|map('length')|sort|last %}