diff options
author | Jesús <heckyel@hyperbola.info> | 2019-02-23 15:53:04 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-02-23 15:53:04 -0500 |
commit | 1416e1d3fe7f66b97356871a6ede5f8f21ba01a2 (patch) | |
tree | 1bec23339ecbdf65f68d3dc44eb82b5a81f17638 | |
parent | 4088fd03c1dee5d13c86721556b741549b406a05 (diff) | |
download | cl-1416e1d3fe7f66b97356871a6ede5f8f21ba01a2.tar.lz cl-1416e1d3fe7f66b97356871a6ede5f8f21ba01a2.tar.xz cl-1416e1d3fe7f66b97356871a6ede5f8f21ba01a2.zip |
inside author in post
-rw-r--r-- | cl-theme/templates/article.html | 11 |
1 files changed, 11 insertions, 0 deletions
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 @@ </small> </time> </i> + + {% if not HIDE_AUTHORS and article.authors %} + <i class="fa fa-user-o"> + {% for author in article.authors %} + <small> + <a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %} + </small> + {% endfor %} + </i> + {% endif %} + </div> </div> <!-- end of post footer nav --> |