From 1416e1d3fe7f66b97356871a6ede5f8f21ba01a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Sat, 23 Feb 2019 15:53:04 -0500 Subject: [PATCH] inside author in post --- cl-theme/templates/article.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/cl-theme/templates/article.html b/cl-theme/templates/article.html index ca9845c..27962ea 100644 --- a/cl-theme/templates/article.html +++ b/cl-theme/templates/article.html @@ -126,6 +126,17 @@ + + {% if not HIDE_AUTHORS and article.authors %} + + {% for author in article.authors %} + + {{ author }}{% if not loop.last %}, {% endif %} + + {% endfor %} + + {% endif %} +