{% extends "layout.html" %} {% block title %}Recent comments{% endblock %} {% block head %} {% endblock %} {% block breadcrumb %} {% endblock %} {% macro pagination() %} {% if page > 1 or page * perpage < count %}
{% endif %} {% endmacro %} {% block hamburger %}
{{ pagination() }}

feed

{% endblock %} {% block body %}

Comments {{ (page - 1) * perpage + 1 }} to {{ [page * perpage, count] | sort | first }} out of {{ count }} in reverse chronological order.

\begin{equation*} \DeclareMathOperator\Coim{Coim} \DeclareMathOperator\Coker{Coker} \DeclareMathOperator\Ext{Ext} \DeclareMathOperator\Hom{Hom} \DeclareMathOperator\Im{Im} \DeclareMathOperator\Ker{Ker} \DeclareMathOperator\Mor{Mor} \DeclareMathOperator\Ob{Ob} \DeclareMathOperator\Sh{Sh} \DeclareMathOperator\SheafExt{\mathcal{E}\mathit{xt}} \DeclareMathOperator\SheafHom{\mathcal{H}\mathit{om}} \DeclareMathOperator\Spec{Spec} \newcommand\colim{\mathop{\mathrm{colim}}\nolimits} \newcommand\lim{\mathop{\mathrm{lim}}\nolimits} \newcommand\Qcoh{\mathit{Qcoh}} \newcommand\Sch{\mathit{Sch}} \newcommand\QCohstack{\mathcal{QC}\!\mathit{oh}} \newcommand\Cohstack{\mathcal{C}\!\mathit{oh}} \newcommand\Spacesstack{\mathcal{S}\!\mathit{paces}} \newcommand\Quotfunctor{\mathrm{Quot}} \newcommand\Hilbfunctor{\mathrm{Hilb}} \newcommand\Curvesstack{\mathcal{C}\!\mathit{urves}} \newcommand\Polarizedstack{\mathcal{P}\!\mathit{olarized}} \newcommand\Complexesstack{\mathcal{C}\!\mathit{omplexes}} \newcommand\Pic{\mathop{\mathrm{Pic}}\nolimits} \newcommand\Picardstack{\mathcal{P}\!\mathit{ic}} \newcommand\Picardfunctor{\mathrm{Pic}} \newcommand\Deformationcategory{\mathcal{D}\!\mathit{ef}} \end{equation*}

{% for comment in comments %}

On {% if comment.site %} {% else %}{{ comment.author }}{% endif %} left comment #{{ comment.id }} on {{ comment.tag.type | capitalize }} {{ comment.tag.ref }} {% for parent in comment.breadcrumb %} {% if parent.type == "chapter" %} in {{ parent.name }} {% endif %} {% endfor %}

{{ comment.comment | safe }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endblock %} {% block sidebar %}
{{ pagination() }}

feed

{% endblock %}