first commit

This commit is contained in:
2017-10-05 18:23:52 +02:00
commit 3a395d8e87
41 changed files with 2087 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% 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 %}