Source Code

/ ssg / src / blog / templates / blog / author_detail.html

{% extends "blog/base.html" %}
{% load blog_extra %}

{% block title %}Author {{ author.name }} - {{ SITE_TITLE }}{% endblock %}

{% block seo %}
    {% include "blog/partial/seo.html" with is_author=True %}
{% endblock %}

{% block content %}

<div class="author-page-container">
  <section class="author-page-main">
    {% include "blog/partial/post_list.html" %}
  </section>
</div>

{% if rss_key %}
  <div id="script-config" data-rss-key="{{ rss_key }}"></div>
  <script src="/static/js/loadExternalPosts.js"></script>
{% endif %}

{% endblock %}

{% block subtitle %}<h2>Posts by {{ author.name }}</h2>{% endblock %}

{% block sidebar %}
  {% include "blog/partial/author.html" with author=author link_name=False %}
  <br>
  <h5 style="float:right;"><a href="{% url "author_list" %}">More Authors</a></h5>
{% endblock %}