lightbox markdown pelican

В заголовке документа

lightbox: true

После чего в шаблоне base.html срабатывают условия:

<head>
...
    {% if (article and article.lightbox) %}
        <!-- Enable lightbox (https://github.com/dimsemenov/Magnific-Popup) -->
        <link href="//cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css" rel="stylesheet">
    {% endif %}
</head>

...
{% if (article and article.lightbox …
more ...