{% extends 'base.html' %} {% block title %}{{ author.name }}{% endblock %} {% block description %}{{ author.name }}'s writing at Notes From Below.{% endblock %} {% block image %}/static/img/favicon-180x180.png{% endblock %} {% block twittercard %}summary{% endblock %} {% block content %}
{% if request.user.is_staff %} {% endif %}

{{ author.name }} {% if author.twitter %}(@{{author.twitter }}){% endif %}


{{ author.formatted_bio|safe }}
{% if posts %}

blog posts

{% for post in posts %}
{% include 'blog_post_thumb.html' with post=post author=author only %}
{% endfor %}

{% endif %}

articles

{% for article in author.get_articles %}
{% include 'article_thumb.html' with article=article only %}
{% endfor %}
{% endblock %}