123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {% extends "misago/base.html" %}
- {% load i18n %}
- {% block title %}
- {% if paginator.page > 1 %}
- {{ thread.title }} ({% blocktrans with page=paginator.page %}page: {{ page }}{% endblocktrans %}) | {{ category.name }} | {{ block.super }}
- {% else %}
- {{ thread.title }} | {{ category.name }} | {{ block.super }}
- {% endif %}
- {% endblock title %}
- {% block meta-extra %}
- {% if paginator.page > 1 %}
- <link rel="canonical" href="{% url url_name slug=thread.slug pk=thread.pk page=paginator.page %}" />
- {% else %}
- <link rel="canonical" href="{% url url_name slug=thread.slug pk=thread.pk %}" />
- {% endif %}
- {% if paginator.previous > 1 %}
- <link rel="prev" href="{% url url_name slug=thread.slug pk=thread.pk page=paginator.previous %}" />
- {% elif paginator.first %}
- <link rel="prev" href="{% url url_name slug=thread.slug pk=thread.pk %}" />
- {% endif %}
- {% if paginator.next %}
- <link rel="next" href="{% url url_name slug=thread.slug pk=thread.pk page=paginator.next %}" />
- {% endif %}
- {% endblock meta-extra %}
- {% block content %}
- <div class="page page-thread {% if category.css_class %}page-thread-{{ category.css_class }}{% endif %}">
- <div class="page-header with-stats with-breadcrumbs">
- {% include "misago/thread/breadcrumbs.html" %}
- <div class="container">
- <h1>{{ thread.title }}</h1>
- </div>
- {% include "misago/thread/stats.html" %}
- </div>
- <div class="container">
- {% include "misago/thread/toolbar-top.html" %}
- {% if thread.poll %}
- {% include "misago/poll/index.html" with poll=thread.poll %}
- {% endif %}
- {% include "misago/thread/posts/index.html" %}
- {% include "misago/thread/paginator.html" %}
- </div>
- </div>
- {% endblock content %}
|