Files
first-contact.net/themes/fsmi-theme/templates/author.html
2017-10-05 18:23:52 +02:00

16 lines
447 B
HTML

{% set name = author %}
{% set link = ["author/",author,".html"]|join %}
{% extends "base.html" %}
{% block content %}
{% from 'macro.html' import article_panel_list with context %}
{% set parent = '' %}
{% set id = ["collapse",author]|join %}
{% set title_left = author %}
{% set title_right = articles|count %}
{% set entry_list = articles %}
{{ article_panel_list(parent,id,title_left,title_right,entry_list) }}
{% endblock %}