Source Code

/ ssg / src / blog / templates / blog / post_list.html

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

{% block title %}{% if column_name %}{{ column_name }} - {% endif %}{{ SITE_TITLE }}{% endblock %}

{% block subtitle %}
{% if column %}
  <h2>{{ column.name }}</h2>
{% endif %}
{% if column %}
    <small style="margin-left:10px;">{{ column.description }}</small>
{% endif %}
{% endblock %}

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

{% block content %}
  {% include "blog/partial/post_list.html" %}

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

{% block footer %}

{% endblock %}